Path

ezpublish / documentation / ez publish / technical manual / 5.x / installation / manual installation / manual configuration of ez...


Caution: This documentation is for eZ Publish legacy, from version 3.x to 6.x.
For 5.x documentation covering Platform see eZ Documentation Center, for difference between legacy and Platform see 5.x Architecture overview.

Manual configuration of eZ Publish

This Documentation can be found on the following link: Manual configuration of eZ Publish

Please refer to this link to access it.

Balazs Halasy (14/09/2010 8:38 am)

Ricardo Correia (08/01/2013 11:51 am)

Geir Arne Waaler, Ricardo Correia


Comments

  • Some other INI files

    When you use the setup wizard and use the plain site package, some other INI files than site.ini are initialized as well.

    This documentation page should list them all, especially for the admin site access (toolbar.ini, icon.ini, ...).
  • Wrong file permissions

    Making files executable and writable by the web server as suggested above is a potential security risk.

    Instead of
    # chmod -R 770 var/ settings/ design/ autoload/
    

    I suggest to use set rights for files and directories separately, and give less permissions to group:

    # find var/ settings/ design/ autoload/ -type d | xargs chmod 750
    # find var/ settings/ design/ autoload/ -type f | xargs chmod 640
    

    • Re: Wrong file permissions

      So, the definitive secure solution as to file permission is meinhard benn's solution?

      But, anyhow, by giving ownership to the webserver user and his group means anytime a developer needs to access a file he'll need to work as root? ...mmhhh