Magento Error: Please check for sufficient write file permissions [fixed]
How to fix the file permissions error in Magento Connect.
If you have SSH, navigate to your magento folder and run the following commands:
1. find . -type d -exec chmod 777 {} ;
2. find . -type f -exec chmod 644 {} ;
That will reset all files to 644 and all directories to 777. After that you shouldn’t have any permissions errors. If you don’t have SSH and you’re hosted by someone, have them run this for you.
You should now be able to access the Magento Connect Manager and other services which require permission changes.
NOTE: Once you have finished with your update make sure to chmod back to safe params, like so:
1. find . -type d -exec chmod 755 {} ;
2. find . -type f -exec chmod 644 {} ;
3. chmod o+w var media app/etc/use_cache.ser
Related Articles
- 22.03.11: Make 'Ship to This Address' Default in Magento Checkout (3)
- 03.06.11: Yoo maps address, how to change address text (0)
- 26.07.11: Backup Incoming and Outgoing mail for your domain EXIM (0)
- 08.04.11: Rename SMTP Banner Exim (1)
- 08.04.11: Coupon Code in Order Confirmation Email - Magento (5)









Comments RSS Feed





Cool, thanks for this.
Go to Top of the page
Fixed my prob with Connect manager, thanks!
Go to Top of the page