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
|