Created
January 27, 2016 16:53
-
-
Save fm/062c043b7fb4887a9058 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Adapted from the Grav Troubleshooting Documentation | |
#!/bin/sh | |
chown faisal:apache . | |
chown -R faisal:apache * | |
find . -type f | xargs chmod 664 | |
find ./bin -type f | xargs chmod 775 | |
find . -type d | xargs chmod 775 | |
find . -type d | xargs chmod +s | |
umask 0002 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment