Go to your directory
to change permission from one to other
find -perm 777 -exec chmod 755 {} \; -print
To change all directory permission
find -type d -perm 777 -exec chmod 755 {} \; -print
To change all public_html permission
cd /home; find -name "public_html" -exec chmod 711 {} \;