[PHP] How to set the file premission by using CHMOD?

2002-09-07 Thread Bryan

Situation:
I want to create a file to a directory, but the premission denied, how to
solve this problem by using CHMOD?

Bryan



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




Re: [PHP] How to set the file premission by using CHMOD?

2002-09-07 Thread Brad Bonkoski

man chown
(change ownership) (i.e. chown my_username:my_groupname directory)
-or-
man chmod
(change permissions)(i.e. chmod uga+w file_name -or- chown 4777 
file_name)

-Brad

Bryan wrote:
 Situation:
 I want to create a file to a directory, but the premission denied, how to
 solve this problem by using CHMOD?
 
 Bryan
 
 
 



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