Difference between revisions of "Talk:Joomla"

From SME Server
Jump to navigationJump to search
(New page: Hello Dietmar. Please, see this post about htaccess configuration, to improve your rpm package. Good work. http://forums.contribs.org/index.php?topic=38332.msg173456#msg173456 --~~~~)
 
(PERMISSION QUESTION)
Line 6: Line 6:
  
 
--[[User:PicsOne|Normando Hall]] 22:29, 30 August 2007 (MDT)
 
--[[User:PicsOne|Normando Hall]] 22:29, 30 August 2007 (MDT)
 +
 +
== PERMISSION QUESTION ==
 +
 +
The permissions on the files are:
 +
directories: 775
 +
files: 664
 +
 +
It's possible that this may not be strong enough permissions as the Joomla FAQ (http://help.joomla.org/component/option,com_easyfaq/task,view/id,167/Itemid,268/)recommends that permissions be as follows:
 +
directories: 755
 +
files: 644
 +
 +
You can change to the recommended settings by:
 +
find . -type d -exec chmod 755 {} \;
 +
find . -type f -exec chmod 644 {} \;
 +
 +
Temporary elevate the permissions to install plugins or configure (change back after you install or configure):
 +
find . -type d -exec chmod 775 {} \;
 +
find . -type f -exec chmod 664 {} \;

Revision as of 17:12, 29 December 2007

Hello Dietmar.

Please, see this post about htaccess configuration, to improve your rpm package. Good work.

http://forums.contribs.org/index.php?topic=38332.msg173456#msg173456

--Normando Hall 22:29, 30 August 2007 (MDT)

PERMISSION QUESTION

The permissions on the files are:

directories: 775
files: 664

It's possible that this may not be strong enough permissions as the Joomla FAQ (http://help.joomla.org/component/option,com_easyfaq/task,view/id,167/Itemid,268/)recommends that permissions be as follows:

directories: 755
files: 644

You can change to the recommended settings by:

find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;

Temporary elevate the permissions to install plugins or configure (change back after you install or configure):

find . -type d -exec chmod 775 {} \;
find . -type f -exec chmod 664 {} \;