Jay Blanchard wrote:
Yes you can, but 'tis not a swell idea. You can exec the chmod command

exec("chmod 0777 /directory/*");

You still cannot set all sub directory and files within those
permissions. Best to loop through and set each as needed, don't forget
to cahnge them back.


Yes, you can:


exec("chmod -R 0777 /directory/*");

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to