Skip to content

Instantly share code, notes, and snippets.

@tegansnyder
Created February 14, 2014 03:21
Show Gist options
  • Save tegansnyder/8995240 to your computer and use it in GitHub Desktop.
Save tegansnyder/8995240 to your computer and use it in GitHub Desktop.
Magento permissions
find . -type f \-exec chmod 644 {} \;
find . -type d \-exec chmod 755 {} \;
find ./var -type d \-exec chmod 777 {} \;
find ./var -type f \-exec chmod 666 {} \;
find ./media -type d \-exec chmod 777 {} \;
find ./media -type f \-exec chmod 666 {} \;
chmod 777 ./app/etc
chmod 644 ./app/etc/*.xml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment