Thread: CHMOD to 777
View Single Post
  #5 (permalink)  
Old 09-07-04, 03:44 AM
mikaelf mikaelf is offline
Wannabe Coder
 
Join Date: Jun 2004
Location: php[dot]net
Posts: 198
Thanks: 0
Thanked 0 Times in 0 Posts
when you're working with your shell, simply write:
shell >> chmod (-f) 777 file_name #to change single file permission
shell >> chmod -R 777 dir_name #to change single directory permission
shell >> chmod -Rf 777 dir_name #to change single directory and all its content recursively
__________________
Useful PHP links:
bugs.php.net - for reporting PHP bugs
pear.php.net - PHP extension and application repository
pecl.php.net - get non standard PHP modules, submit yours
www.phpclasses.org - PHP classes repository
Reply With Quote