remove write permission for group and others in folders

ehsanch

Verified User
Joined
Jun 2, 2008
Messages
46
to remove write permission for group and others in folders and solve suexec problem with 777 folders you can run this command :

Code:
find /home/*/domains/*/public_html -print0 -type d | xargs -0 chmod go-w
 
Last edited:
Back
Top