Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. cd <your Magento install dir>
  2.  
  3. find . -type f -exec chmod 600 {} \;
  4. find . -type d -exec chmod 700 {} \;
  5. find . -type f -exec chmod g+r {} \;
  6. find . -type f -exec chmod o+r {} \;
  7. find . -type d -exec chmod g+rx {} \;
  8. find . -type d -exec chmod o+rx {} \;
  9. find ./var -type d -exec chmod g+rwx {} \;
  10. find ./pub/media -type d -exec chmod g+rwx {} \;
  11. find ./pub/static -type d -exec chmod o+rx {} \;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement