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.

Site management

A single eZ publish installation is capable of hosting multiple sites by making use of something called the siteaccess system. This system makes it possible to use different configuration settings based on a set of rules. The rules control which group of settings that should be used in a particular case. The siteaccess rules must be specified in the global override for the site.ini configuration file ("/settings/override/site.ini.append.php").

Siteaccess

A collection of configuration settings is called a siteaccess. When a siteaccess is in use, the default configuration settings will be overridden by the settings that are defined for the siteaccess. Among other things, a siteaccess dictates which database, design and var directory that should be used (these are sometime referred to as "resources"). By making use of different siteaccesses, it is possible to combine different content and designs. A typical eZ publish site consists of two siteaccesses: a public interface for visitors and a restricted interface for administrators. Both siteaccesses use the same content (same database and same var directory) but they use different designs. While the administration siteaccess would most likely use the built in administration design, the public siteaccess would use a custom design. The following illustration shows this scenario.

Example of a setup with two siteaccesses.

Example of a setup with two siteaccesses.

A siteaccess is nothing more than a set of configuration files that override the default settings when the siteaccess is used. A single eZ publish installation can virtually host an unlimited number of sites by the way of siteaccesses. The configuration settings for a siteaccess are located inside a dedicated subdirectory within the "/settings/siteaccess" directory. The name of the subdirectory is the actual name of the siteaccess. (Please note that siteaccess name should only contain letters, digits and underscores.) The following illustration shows a setup with two siteaccesses: admin and public.

Siteaccess directory example.

Siteaccess directory example.

When a siteaccess is in use, eZ publish reads the configuration files using the following sequence:

  1. Default configuration settings (/settings/*.ini)
  2. Siteaccess settings (/settings/siteaccess/[name_of_siteaccess]/*.ini.append.php)
  3. Global overrides (/settings/override/*.ini.append.php)

In other words, eZ publish will first read the default configuration settings. Secondly, it will determine which siteaccess to use based on the rules that are defined in the global override for "site.ini" ("/settings/override/site.ini.append.php"). When it knows which siteaccess to use, it will go into the directory of that siteaccess and read the configuration files that belong to that siteaccess. The settings of the siteaccess will override the default configuration settings. For example, if the siteaccess uses a database called "Amiga", the system will see this and automatically use the specified database when an incoming request is processed. Finally, eZ publish reads the configuration files in the global override directory. The settings in the global override directory will override all other settings. In other words, if a database called "CD32" is specified in the global override for "site.ini" then eZ publish will attempt to use that database regardless of what is specified in the siteaccess settings. If a setting is not overridden by either the siteaccess or from within a global override then the default setting will be used. The default settings are set by the ini files located in the "/settings" directory. The following figure illustrates how the system reads the configuration files using the "site.ini" file as an example. As already mentioned, settings placed in the override files will be used instead of the default ones.

Configuration override example.

Configuration override example.

Balazs Halasy (01/02/2005 2:27 pm)

Svitlana Shatokhina (28/02/2006 2:53 pm)


Comments

  • Sequence of the override files

    When a siteaccess is in use, it seems more LOGIC for eZ publish to read the configuration files using the following sequence:

    1. Default configuration settings (/settings/*.ini)
    2. Global overrides (/settings/override/*.ini.append.php)
    3. Siteaccess settings (/settings/siteaccess/[name_of_siteaccess]/*.ini.append.php)

    I think, for example, that the database settings in the global override directory SHOULD be overrided by the database settings in the siteaccess. Otherwise if we have several databases for multisites, the different databases settings in the different siteaccess are overrided by the same database sittings in the global overrides, some sites would't work.

    • Re: Sequence of the override files

      "I think, for example, that the database settings in the global override directory SHOULD be overrided by the database settings in the siteaccess. Otherwise if we have several databases for multisites, the different databases settings in the different siteaccess are overrided by the same database sittings in the global overrides, some sites would't work."

      In that case, you should not use the global override to set the database settings. You would have to set the database settings in every site's siteaccess file.
      • Re: Re: Sequence of the override files

        Supposing multisites include many sites with the same database, for instance, 10 sites. I can set the database db in the global overrides only one time. Some day I want to site1 with a separate database db1. How can I do?

        According to your sequence to read the configuration files:
        1. Default configuration settings (/settings/*.ini)
        2. Siteaccess settings (/settings/siteaccess/[name_of_siteaccess]/*.ini.append.php)
        3. Global overrides (/settings/override/*.ini.append.php)

        I have to:
        --- set the db1 in this siteaccess setting file for site1;
        --- delete the db settings in the global override file, or db1 will be overrided by db settings;
        --- set the same db one by one in other siteaccess setting files, 9 files for this example.

        But according to the following sequence to read the configuration files:
        1. Default configuration settings (/settings/*.ini)
        2. Global overrides (/settings/override/*.ini.append.php)
        3. Siteaccess settings (/settings/siteaccess/[name_of_siteaccess]/*.ini.append.php)

        I only need set the db1 in this siteaccess setting file for site1, that's all.

        I needn't delete the db settings in the global override file, because the db will be overrite by db1. Also I don't worry about other sites. Do nothing for other 9 sites.

        Think about other setting parameters, there is the same situation. That's why I think the latter seems more LOGIC.
  • You may add more info about extension

    You can place a lot of common settings in a common extension:
    Smart example (for sites with only different lang):

    $ cat settings/siteaccess/en/site.ini.append.php; echo
    <?php /* #?ini charset="iso-8859-15"?

    [ExtensionSettings]
    ActiveAccessExtensions[]=in_common
    ActiveAccessExtensions[]=in_lang_en

    */ ?>

    $diff -Naur extension/in_lang_en/settings/site.ini.append.php extension/in_lang_de/settings/
    --- extension/in_ber_lang_en/settings/site.ini.append.php 2005-09-30 15:32:34.000000000 +0200
    +++ extension/in_ber_lang_de/settings/site.ini.append.php 2005-09-30 15:33:13.000000000 +0200
    @@ -1,16 +1,16 @@
    <?php /* #?ini charset="iso-8859-15"?

    [SiteSettings]
    -SiteName=[en]
    +SiteName=[de]
    -SiteURL=http://www.example.it/en
    +SiteURL=http://www.example.it/de

    [RegionalSettings]
    -Locale=eng-US
    -ContentObjectLocale=eng-US
    +Locale=ger-DE
    +ContentObjectLocale=ger-DE
    TextTranslation=enabled

    [ContentSettings]
  • Extensions

    Here the information about extensions are missing. This is the correct order when using settings in extensions:

    1. Default configuration settings (/settings/*.ini)
    2. Siteaccess settings (/settings/siteaccess/[name_of_siteaccess]/*.ini.append.php)
    4. Ative Extensions (/extension/*/settings/*.ini.append.php)
    3. Global overrides (/settings/override/*.ini.append.php)
  • Extensions update

    This is the order, including extension site accesses:

    1. Default configuration settings (/settings/*.ini)
    2. Active extension siteaccesses (/extension/*/settings/siteaccess/[name_of_siteaccess]/*.ini.append.php)
    3. Siteaccesses (/settings/siteaccess/[name_of_siteaccess]/*.ini.append.php)
    4. Active extensions (/extension/*/settings/*.ini.append.php)
    5. Global overrides (/settings/override/*.ini.append.php)
  • Why?

    Why do the active extensions settings have to be loaded so late? This makes absolutely no sens. It would be so much better and easier to understand if they were loaded in the following order:

    1. Default configuration settings (/settings/*.ini)
    2. Active extensions (/extension/*/settings/*.ini.append.php)
    3. Siteaccesses (/settings/siteaccess/[name_of_siteaccess]/*.ini.append.php)
    4. Active extension siteaccesses (/extension/*/settings/siteaccess/[name_of_siteaccess]/*.ini.append.php)
    5. Global overrides (/settings/override/*.ini.append.php)

    This way it would be possible to modify the settings to the needs of the specific site-accesses and you have the other possibility to completely override them in the override-dir.

    So why has it to be such a mess?