Skip to content

Instantly share code, notes, and snippets.

@skyebook
Created July 8, 2013 16:23
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 skyebook/5950278 to your computer and use it in GitHub Desktop.
Save skyebook/5950278 to your computer and use it in GitHub Desktop.
Reset WordPress file and directory permissions
cd /my/wordpress/location
sudo find . -type f -exec chmod 644 {} +
sudo find . -type d -exec chmod 755 {} +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment