ask-sheldon.com
Magento - Reset Filepermissions - Bravehartk2's Blog
To reset filepermissions of Magento, you can run these commands on shell from within the Magento root folder: $> #for magento 1.5+ $> find . -type f -exec chmod 644 {} ; $> find . -type d -exec chmod 755 {} ; //if shelluser for checkout != apacheuser => 775 $> chmod o+w var var/.htaccess […]
Sheldon