Support Joomla!

1.5 Template Project

The Joomla! Documentation Working Group is running a project to develop detailed reference and tutorial material on Joomla! 1.5 templates.  There is a project page on the documentation wiki where you can see the work in progress and help us by contributing your knowledge.

Who's Online

We have 40 guests online

Help Site License

The Joomla! Help Site content is copyright © 2005 - 2008 by the individual contributors and can be used in accordance with the Creative Commons License, Attribution NonCommercial ShareAlike 2.5. Some parts of this website may be subject to other licenses.
Home arrow FAQs

J! CORE: How do I recursively adjust file and directory permissions?
Author(s):Rliskey
Experience level:Beginner
Contributors:friesengeistJoomla! version:1.0
Date added:Monday, 26 March 2007Date last changed:Friday, 06 July 2007
 
Using Joomla! Administration
In the "back end" Administration view, go to Site --> Global Configuration --> Server.

Using the UNIX shell
Note: The 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.

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 may need to reset write permissions to install more extensions.
Last Updated Friday, 06 July 2007
< Prev   Next >

Powered by EasyFAQ © 2006 Joomla-addons.org