Skip to content

Instantly share code, notes, and snippets.

@infn8
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save infn8/2121f2c0364efd9e0a44 to your computer and use it in GitHub Desktop.
Save infn8/2121f2c0364efd9e0a44 to your computer and use it in GitHub Desktop.
Set WP permissions on Dreamhost via SSH
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