TPerry
Well-known member
You also need to make sure that all your directories and files have write permission for the group that the HTTP server runs under.
for the files
for the directories
for the files
Code:
find /directory/path/to/files -type f -name '*' -exec chmod 664 {} \;
Code:
cd /path/to/your/files
find . -type d -print0 | xargs -0 chmod 775