I upgraded to 10.10 and now none of my userdirs are accessible.
The error log shows this error:
(13)Permission denied: access to /~<user> denied
I've tried chmoding to 711, 755 and 777, setting the group and/or user owner to www-data and nothing works.
Nothing has changed in my file permissions, ownership or apache2.conf from before the upgrade so I don't understand what's going on here.
I've been messing with this for two days, found lots of people complaining of this issue but the only ones that were solved were done by setting folder permissions or ownership.
My userdir.conf:
Any help is greatly appreciated.
The error log shows this error:
(13)Permission denied: access to /~<user> denied
I've tried chmoding to 711, 755 and 777, setting the group and/or user owner to www-data and nothing works.
Nothing has changed in my file permissions, ownership or apache2.conf from before the upgrade so I don't understand what's going on here.
I've been messing with this for two days, found lots of people complaining of this issue but the only ones that were solved were done by setting folder permissions or ownership.
My userdir.conf:
Code:
<IfModule mod_userdir.c> UserDir public_html UserDir disabled root <Directory /home/*/public_html> # AllowOverride FileInfo AuthConfig Limit Indexes AllowOverride None Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec <Limit GET POST OPTIONS> Order allow,deny Allow from all </Limit> <LimitExcept GET POST OPTIONS> Order deny,allow Deny from all </LimitExcept> </Directory> </IfModule>
Comment