rocketitsupport wrote:
Update, manually reset file/folder owner/permissions and problem resolved, j.
You need to set your file/folder permissions correctly and ensure files are owned by correct user.
For me using Debian and suPHP under Plesk:
Sets correct owner
cd /var/www/vhosts/[b]yourdomain[/b]/httpdocs
chown -R [b]ftpusername[/b]:www-data /var/www/vhosts/[b]youdomain[/b]/httpdocs
Sets correct file.folder permissions:
find . -type f -exec chmod 664 {} \;
find . -type d -exec chmod 775 {} \;
If your not running suPHP try just:
find . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;
Remember to set your /cache and /tmp to 777 afterwards
Hope this helps if not I can sort for you for £20.00
Kind regards, j.
NB: If you don't have access to SSH you can do this va. your control panel but can be a pain in the arse as usually you can only change on file at a time! Alt. as your hosting provider to do this for you.