How to set right access for all WP folders and files?

Problem: Need to be done right access for all folders (755) and files (644) as quickly as possible.

Solution: Yes, we can do it! 🙂 Go to root of WP folder and run next commands in the Terminal (Ctrl + Alt + T):

find . -type d -exec chmod 755 {} +
find . -type f -exec chmod 644 {} +
Quick set right access for all WP folders and files
Leave Comment

Your email address will not be published. Required fields are marked *