Skip to content

Instantly share code, notes, and snippets.

@mckelvey
Created August 15, 2019 18: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 mckelvey/e60d4693eb0d72152acc0ac2215f8bd0 to your computer and use it in GitHub Desktop.
Save mckelvey/e60d4693eb0d72152acc0ac2215f8bd0 to your computer and use it in GitHub Desktop.
SiteGround Permissions Fix
find . -type d -print0 | xargs -0 chmod 0755 && find . -type f -print0 | xargs -0 chmod 0644
@mckelvey
Copy link
Author

Supplied to me by one of their support staff... it’s extremely helpful to me when I push from a vagrant machine to SiteGround, as I need the permissions on my machine different than SG’s preferred state to make development easy. :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment