Last active
September 4, 2015 12:14
-
-
Save nojimage/320474 to your computer and use it in GitHub Desktop.
EC-CUBEのインストール時パーミッション設定用スクリプト
This file contains 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/sh | |
## EC CUBE set permission | |
chmod -R o+w html/install/temp/ | |
chmod -R o+w html/user_data/ | |
chmod -R o+w html/upload/ | |
chmod -R o+w data/class/ | |
chmod -R o+w data/cache/ | |
chmod -R o+w data/logs/ | |
chmod -R o+w data/downloads/ | |
chmod -R o+w data/upload/ | |
chmod o+w data/Smarty/ | |
chmod o+w data/Smarty/config | |
chmod -R o+w data/Smarty/templates | |
chmod -R o+w data/Smarty/templates_c | |
chmod o+w html/ | |
chmod o+w data/config/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment