Re: Php handlers like suphp as related to .tar.gz file ownership (chown) and permissions (chmod)
Posted by Will on 1202587646
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.
This Post was from: https://www.impresscms.org/iforum/viewtopic.php?topic_id=1045&post_id=9360