Created
November 22, 2013 19:02
-
-
Save khalil-tabbal/7605089 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
#!/bin/bash | |
# this script let you automatically change permissions for PyroCMS installation | |
echo "Start Setting PyroCMS folders permissions" | |
chmod -Rf 777 assets/ | |
echo "changing permissions for assets/cache" | |
chmod -Rf 777 system/cms/cache | |
echo "changing permissions for system/cms/cache/" | |
chmod -Rf 777 system/cms/logs | |
echo "changing permissions for system/cms/logs/" | |
chmod -Rf 777 uploads | |
echo "changing permissions for uploads/" | |
echo "PyroCMS Permissions successfully set" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment