Setup Magento Permissions Script
Posted by Stefan on 25 November, 2008
2 Comments
This item was filled under [ Tutorials ]
Magento permissions can be an absolute pain! Use one of the solutions below to setup Magento permissions easily.
1. SSH Script
#!/bin/bash
find www -name .htaccess -exec chmod 604 {} ;
find www -name *.php -exec chmod 644 {} ;
find www -type d -exec chmod 705 {} ;
2. SSH Command Line
find ./ -type d -exec chmod 755 {} \; [...]

(4.75 out of 5)