Friday, March 22, 2013

Fix Cpanel Permissions


Often we get internal error due to incorrect permission. Below are the commands to fix the file and directory permissions.

find $HOMEDIR -type f -exec chmod 644 {} \;
find $HOMEDIR -type d -exec chmod 755 {} \; 

No comments:

Post a Comment