Untuk perintah di shellnya sebagai beriukt :
find /home/USERHOSTING/public_html/ -type f -exec chmod 644 {} \;
find /home/USERHOSTING/public_html/ -type d -exec chmod 755 {} \;
penjelasan type f dan d yaitu :
f = file
d = folder
Jadi perintah di atas adalah: merubah permission semua file (f) dan merubah permission semua folder (d) yang ada di dalam direktori public_html.