| Joomla! http://forum.joomla.org/ |
|
| FAQ: How to recursively adjust file and directory permissions http://forum.joomla.org/viewtopic.php?f=414&t=101838 |
Page 1 of 1 |
| Author: | rliskey [ Sat Oct 07, 2006 7:57 am ] |
| Post subject: | FAQ: How to recursively adjust file and directory permissions |
Using Joomla! Administration In the "back end" Administration view, go to Site --> Global Configuration --> Server. Using the UNIX shell Note: The [i]find command automatically assumes that it should start from the current directory. To be safe, go to your public_html directory and specify a path as the first argument. Some shells, such as bash on Apple OS X, must have a path specified in the find command.[/i] find . -type f -exec chmod 644 {} \; find . -type d -exec chmod 755 {} \; chmod 707 images chmod 707 images/stories chown apache:apache cache Using a shell script See this post Notes: 1. Test all third party extensions after changing permissions. 2. You'll need to reset write permissions to install more extensions. Back to Security FAQ Table of Contents Search Keywords: security, files, directories, folders, protect |
|
| Page 1 of 1 | All times are UTC |
| Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group http://www.phpbb.com/ |
|