On 08/09/2007, kris duff <[EMAIL PROTECTED]> wrote: > And the error_log : > [...] (13)Permission denied: access to /~my_user > denied
This is a filesystem permissions error. Most likely, your home directory is closed to the apache user. It's important to realise that on unix systems, a user accessing a file needs not only read access to the file, but execute access to all parent directories. Try chmod o+x ~my_user Or alternatively, change your home directory's group to a group that contains the web server's user. -- noodl --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: [EMAIL PROTECTED] " from the digest: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
