Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save the-nerdery-dot-info/76487ec01841900108edf0e6942edd9a to your computer and use it in GitHub Desktop.
Save the-nerdery-dot-info/76487ec01841900108edf0e6942edd9a to your computer and use it in GitHub Desktop.
Magento 1.9 permissions
sudo chown -R ubuntu:www-data install-dir
sudo find . -type f -exec chmod 640 {} \;
sudo find . -type d -exec chmod 750 {} \;
sudo find var/ -type f -exec chmod 660 {} \;
sudo find media/ -type f -exec chmod 660 {} \;
sudo find var/ -type d -exec chmod 770 {} \;
sudo find media/ -type d -exec chmod 770 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment