3 if(substr($_SERVER["SCRIPT_FILENAME"], 0, 4) == '/omd') {
4 $site_parts = array_slice(explode('/' ,dirname($_SERVER["SCRIPT_FILENAME"])), 0, 4);
5 $site = $site_parts[count($site_parts)-1];
6 define('DOKU_CONF', '/omd/sites/'.$site.'/etc/dokuwiki/');
10 $site=getenv('OMD_SITE');
11 define('DOKU_CONF', '/omd/sites/'.$site.'/etc/dokuwiki/');
12 define('DOKU_INC', '/omd/sites/'.$site.'/var/dokuwiki/data/');
16 $config_cascade = array(
18 'default' => array(DOKU_CONF
.'dokuwiki.php'),
19 'local' => array(DOKU_CONF
.'local.php', DOKU_CONF
.'cookie_auth.php'),
20 'protected' => array(DOKU_CONF
.'local.protected.php'),
23 'default' => array(DOKU_CONF
.'acronyms.conf'),
24 'local' => array(DOKU_CONF
.'acronyms.local.conf'),
27 'default' => array(DOKU_CONF
.'entities.conf'),
28 'local' => array(DOKU_CONF
.'entities.local.conf'),
31 'default' => array(DOKU_CONF
.'interwiki.conf'),
32 'local' => array(DOKU_CONF
.'interwiki.local.conf'),
35 'default' => array(DOKU_CONF
.'license.php'),
36 'local' => array(DOKU_CONF
.'license.local.php'),
39 'default' => array(DOKU_CONF
.'mediameta.php'),
40 'local' => array(DOKU_CONF
.'mediameta.local.php'),
43 'default' => array(DOKU_CONF
.'mime.conf'),
44 'local' => array(DOKU_CONF
.'mime.local.conf'),
47 'default' => array(DOKU_CONF
.'scheme.conf'),
48 'local' => array(DOKU_CONF
.'scheme.local.conf'),
51 'default' => array(DOKU_CONF
.'smileys.conf'),
52 'local' => array(DOKU_CONF
.'smileys.local.conf'),
55 'default' => array(DOKU_CONF
.'wordblock.conf'),
56 'local' => array(DOKU_CONF
.'wordblock.local.conf'),
59 'default' => DOKU_CONF
.'acl.auth.php',
61 'plainauth.users' => array(
62 'default' => DOKU_CONF
.'users.auth.php',
64 'plugins' => array( // needed since Angua
65 'default' => array(DOKU_CONF
.'plugins.php'),
66 'local' => array(DOKU_CONF
.'plugins.local.php'),
68 DOKU_CONF
.'plugins.required.php',
69 DOKU_CONF
.'plugins.protected.php',
73 'screen' => DOKU_CONF
.'userstyle.css',
74 'print' => DOKU_CONF
.'userprint.css',
75 'feed' => DOKU_CONF
.'userfeed.css',
76 'all' => DOKU_CONF
.'userall.css',
78 'userscript' => array(
79 'default' => DOKU_CONF
.'userscript.js'