Skip to content

Instantly share code, notes, and snippets.

@carlosasin
Created October 2, 2014 08:26
Show Gist options
  • Save carlosasin/147c5bad7195b107e900 to your computer and use it in GitHub Desktop.
Save carlosasin/147c5bad7195b107e900 to your computer and use it in GitHub Desktop.
Magento - Repair permissions
#!/bin/sh
sudo find . -type f -exec chmod 644 {} \;
sudo find . -type d -exec chmod 755 {} \;
sudo chmod o+w var app/etc
sudo chmod 550 mage
sudo chmod -R o+w media
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment