Articles on: Linux

How to Fix A User's Files and Folders Permission When Using suPHP

Run the commands below if the user need to fix all his folders and files permission when running suphp. Replace the username.


find /home/<<username>>/public_html/ -type d -exec chmod 755 {} \;
find /home/<<username>>/public_html/ -type f -exec chmod 644 {} \;

Updated on: 14/12/2018

Was this article helpful?

Share your feedback

Cancel

Thank you!