Here are the SSH commands to fix your permissions on a mass level: find ~/public_html -type d -exec chmod 755 {} \; find ~/public_html -type f -exec chmod 644 {} \; Basically, the format is to find, or look, in the path of ~(which means home) and then in public_html. (If you want to look […]
The post SSH: How to Fix Permissions on Files and Directories? appeared first on PHP MySQL Talk.