Skip to content

Instantly share code, notes, and snippets.

@mtrl
Created March 3, 2015 09:13
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 mtrl/ac5a2c3b52bb88ed51a4 to your computer and use it in GitHub Desktop.
Save mtrl/ac5a2c3b52bb88ed51a4 to your computer and use it in GitHub Desktop.
WordPress permissions
From http://www.smashingmagazine.com/2014/05/08/proper-wordpress-filesystem-permissions-ownerships/
sudo find . -type f -exec chmod 644 {} +
sudo find . -type d -exec chmod 755 {} +
sudo chmod 600 wp-config.php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment