Last active
August 29, 2015 14:04
-
-
Save infn8/2121f2c0364efd9e0a44 to your computer and use it in GitHub Desktop.
Set WP permissions on Dreamhost via SSH
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
cd /path/to/wordpress/install/ | |
find . -type f -exec chmod 644 {} \; | |
find . -type d -exec chmod 755 {} \; | |
find . -name "wp-config.php" -exec chmod 640 {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment