Wednesday 24 December 2003 10:01:16 am
I pasted Install documentation for Permissions, it recommends to change the permissions to your webserver username and groupname. What is the best approach to assign directories permissions?
Permissions If eZ publish is installed on a Linux/UNIX based system, then a couple of file permissions need to be changed. There exists a shell script that takes care of this. This script must be run, or else, eZ publish will not function properly. The script needs to be run from within the eZ publish directory, like this:
$ cd <ez-publish-directory>
$ bin/modfix.sh The modfix script alters the permission settings of the following directories:
var/* (recursive)
settings/* (recursive) design/* (recursive) If you know the user and group of the webserver it is recommended to use a different set of permissions. Example:
chmod og+rwx -R var
chown -R nouser.nouser var The nouser.nouser notation must be changed to your webserver username and groupname.
|