Report message:*
 

Re: Php handlers like suphp as related to .tar.gz file ownership (chown) and permissions (chmod)

Subject: Re: Php handlers like suphp as related to .tar.gz file ownership (chown) and permissions (chmod)
by Will on 2008/2/9 12:07:26

This may even be easier.

cd /path/to/dir
chmod -R 755 *
find -type f -print0|xargs -0 chmod 644

This will change everything to 755, then you do a search for non-folders and chmod them to 644.

It definitely needs to be owner/nobody.