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 {} +