Thread
:
Any PHP experts??
View Single Post
01-23-2009, 08:04 AM
nation-x
Confirmed User
Industry Role:
Join Date: Mar 2004
Location: Rock Hill, SC
Posts: 5,370
Your issue is umask. It changes the ownership of the files that were chmod via php. You can try using the shell to chmod the files... when I started doing that it fixed my permissions issues.
PHP Code:
exec
(
'chmod 0777 /<path>/file.txt'
);
nation-x
View Public Profile
Visit nation-x's homepage!
Find More Posts by nation-x