1ed7b5f09Sandi<?php 2ed7b5f09Sandi/** 3ed7b5f09Sandi * Initialize some defaults needed for DokuWiki 4ed7b5f09Sandi */ 5ed7b5f09Sandi 6*3272d797SAndreas Gohr/** 7*3272d797SAndreas Gohr * timing Dokuwiki execution 8*3272d797SAndreas Gohr */ 9a609a9ccSBen Coburnfunction delta_time($start=0) { 10ac4be4d7SPiyush Mishra return microtime(true)-((float)$start); 11a609a9ccSBen Coburn} 12a609a9ccSBen Coburndefine('DOKU_START_TIME', delta_time()); 13a609a9ccSBen Coburn 14ccaeaa85SAndreas Gohrglobal $config_cascade; 15cca94fbcSRoland Hager$config_cascade = array(); 16ccaeaa85SAndreas Gohr 1748beefecSAndreas Gohr// if available load a preload config file 18e6266454SChris Smith$preload = fullpath(dirname(__FILE__)).'/preload.php'; 19e6266454SChris Smithif (@file_exists($preload)) include($preload); 2048beefecSAndreas Gohr 21ed7b5f09Sandi// define the include path 2200976812SAndreas Gohrif(!defined('DOKU_INC')) define('DOKU_INC',fullpath(dirname(__FILE__).'/../').'/'); 23ad15db82Sandi 24c2a6d816SAndreas Gohr// define Plugin dir 25c2a6d816SAndreas Gohrif(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/'); 26c2a6d816SAndreas Gohr 27e7cb32dcSAndreas Gohr// define config path (packagers may want to change this to /etc/dokuwiki/) 28b7551a6dSEsther Brunnerif(!defined('DOKU_CONF')) define('DOKU_CONF',DOKU_INC.'conf/'); 29e7cb32dcSAndreas Gohr 30bad905f1SBen Coburn// check for error reporting override or set error reporting to sane values 31d8186216SBen Coburnif (!defined('DOKU_E_LEVEL') && @file_exists(DOKU_CONF.'report_e_all')) { 32bad905f1SBen Coburn define('DOKU_E_LEVEL', E_ALL); 33bad905f1SBen Coburn} 34fc80ed59SAndreas Gohrif (!defined('DOKU_E_LEVEL')) { 354fcd684aSMichael Hamann if(defined('E_DEPRECATED')){ // since php 5.3, since php 5.4 E_STRICT is part of E_ALL 364fcd684aSMichael Hamann error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT); 37fc80ed59SAndreas Gohr }else{ 38fc80ed59SAndreas Gohr error_reporting(E_ALL ^ E_NOTICE); 39fc80ed59SAndreas Gohr } 40fc80ed59SAndreas Gohr} else { 41fc80ed59SAndreas Gohr error_reporting(DOKU_E_LEVEL); 42fc80ed59SAndreas Gohr} 43c53ea5f2Sandi 4450602150SBen Coburn// init memory caches 45db959ae3SAndreas Gohrglobal $cache_revinfo; 46db959ae3SAndreas Gohr $cache_revinfo = array(); 47db959ae3SAndreas Gohrglobal $cache_wikifn; 48db959ae3SAndreas Gohr $cache_wikifn = array(); 49db959ae3SAndreas Gohrglobal $cache_cleanid; 50db959ae3SAndreas Gohr $cache_cleanid = array(); 51db959ae3SAndreas Gohrglobal $cache_authname; 52db959ae3SAndreas Gohr $cache_authname = array(); 53db959ae3SAndreas Gohrglobal $cache_metadata; 54db959ae3SAndreas Gohr $cache_metadata = array(); 5550602150SBen Coburn 56cca94fbcSRoland Hager// always include 'inc/config_cascade.php' 57cca94fbcSRoland Hager// previously in preload.php set fields of $config_cascade will be merged with the defaults 58e6a6dbfeSAndreas Gohrinclude(DOKU_INC.'inc/config_cascade.php'); 59cb043f52SChris Smith 604724a577Sandi//prepare config array() 61ee20e7d1Sandiglobal $conf; 624724a577Sandi$conf = array(); 634724a577Sandi 64cb043f52SChris Smith// load the global config file(s) 65b303b92cSChris Smithforeach (array('default','local','protected') as $config_group) { 66f8121585SChris Smith if (empty($config_cascade['main'][$config_group])) continue; 67b303b92cSChris Smith foreach ($config_cascade['main'][$config_group] as $config_file) { 68f8121585SChris Smith if (@file_exists($config_file)) { 69f8121585SChris Smith include($config_file); 70f8121585SChris Smith } 71cb043f52SChris Smith } 720a6ead41SAndreas Gohr} 73ad15db82Sandi 74066fee30SAndreas Gohr//prepare license array() 75066fee30SAndreas Gohrglobal $license; 76066fee30SAndreas Gohr$license = array(); 77066fee30SAndreas Gohr 78066fee30SAndreas Gohr// load the license file(s) 79f8121585SChris Smithforeach (array('default','local') as $config_group) { 80f8121585SChris Smith if (empty($config_cascade['license'][$config_group])) continue; 81f8121585SChris Smith foreach ($config_cascade['license'][$config_group] as $config_file) { 82f8121585SChris Smith if(@file_exists($config_file)){ 83f8121585SChris Smith include($config_file); 84f8121585SChris Smith } 85f8121585SChris Smith } 86066fee30SAndreas Gohr} 87066fee30SAndreas Gohr 881f8eb24fSAndreas Gohr// set timezone (as in pre 5.3.0 days) 891f8eb24fSAndreas Gohrdate_default_timezone_set(@date_default_timezone_get()); 901f8eb24fSAndreas Gohr 91ed7b5f09Sandi// define baseURL 924b1a4e04SAndreas Gohrif(!defined('DOKU_REL')) define('DOKU_REL',getBaseURL(false)); 93ed7b5f09Sandiif(!defined('DOKU_URL')) define('DOKU_URL',getBaseURL(true)); 944b1a4e04SAndreas Gohrif(!defined('DOKU_BASE')){ 954b1a4e04SAndreas Gohr if($conf['canonical']){ 964b1a4e04SAndreas Gohr define('DOKU_BASE',DOKU_URL); 974b1a4e04SAndreas Gohr }else{ 984b1a4e04SAndreas Gohr define('DOKU_BASE',DOKU_REL); 994b1a4e04SAndreas Gohr } 1004b1a4e04SAndreas Gohr} 1014b1a4e04SAndreas Gohr 102b8595a66SAndreas Gohr// define whitespace 103b8595a66SAndreas Gohrif(!defined('DOKU_LF')) define ('DOKU_LF',"\n"); 104b8595a66SAndreas Gohrif(!defined('DOKU_TAB')) define ('DOKU_TAB',"\t"); 105ed7b5f09Sandi 106656c8fb3SAndreas Gohr// define cookie and session id, append server port when securecookie is configured FS#1664 107656c8fb3SAndreas Gohrif (!defined('DOKU_COOKIE')) define('DOKU_COOKIE', 'DW'.md5(DOKU_REL.(($conf['securecookie'])?$_SERVER['SERVER_PORT']:''))); 108e71ce681SAndreas Gohr 109ee20e7d1Sandi 110ed7b5f09Sandi// define main script 111ed7b5f09Sandiif(!defined('DOKU_SCRIPT')) define('DOKU_SCRIPT','doku.php'); 112ed7b5f09Sandi 113c4766956SAndreas Gohr// DEPRECATED, use tpl_basedir() instead 1146b13307fSandiif(!defined('DOKU_TPL')) define('DOKU_TPL', 115f62ea8a1Sandi DOKU_BASE.'lib/tpl/'.$conf['template'].'/'); 1166b13307fSandi 117c4766956SAndreas Gohr// DEPRECATED, use tpl_incdir() instead 11878a6aeb1SAndreas Gohrif(!defined('DOKU_TPLINC')) define('DOKU_TPLINC', 11978a6aeb1SAndreas Gohr DOKU_INC.'lib/tpl/'.$conf['template'].'/'); 12078a6aeb1SAndreas Gohr 121ed7b5f09Sandi// make session rewrites XHTML compliant 1223fc74836Sandi@ini_set('arg_separator.output', '&'); 123ed7b5f09Sandi 124d7e6bba9SAndreas Gohr// make sure global zlib does not interfere FS#1132 125d7e6bba9SAndreas Gohr@ini_set('zlib.output_compression', 'off'); 126d7e6bba9SAndreas Gohr 1276deb5405SAndreas Gohr// increase PCRE backtrack limit 1286deb5405SAndreas Gohr@ini_set('pcre.backtrack_limit', '20971520'); 1296deb5405SAndreas Gohr 13098bda4fdSAndreas Gohr// enable gzip compression if supported 13198bda4fdSAndreas Gohr$conf['gzip_output'] &= (strpos($_SERVER['HTTP_ACCEPT_ENCODING'],'gzip') !== false); 1323138b5c7SAndreas Gohrif ($conf['gzip_output'] && 1333138b5c7SAndreas Gohr !defined('DOKU_DISABLE_GZIP_OUTPUT') && 13498bda4fdSAndreas Gohr function_exists('ob_gzhandler')) { 1353138b5c7SAndreas Gohr ob_start('ob_gzhandler'); 1363138b5c7SAndreas Gohr} 1373138b5c7SAndreas Gohr 138ed7b5f09Sandi// init session 1396534245aSAndreas Gohrif (!headers_sent() && !defined('NOSESSION')){ 140ed7b5f09Sandi session_name("DokuWiki"); 14173ab87deSGabriel Birke $cookieDir = empty($conf['cookiedir']) ? DOKU_REL : $conf['cookiedir']; 142f5c6743cSAndreas Gohr if (version_compare(PHP_VERSION, '5.2.0', '>')) { 14373ab87deSGabriel Birke session_set_cookie_params(0,$cookieDir,'',($conf['securecookie'] && is_ssl()),true); 144f5c6743cSAndreas Gohr }else{ 14573ab87deSGabriel Birke session_set_cookie_params(0,$cookieDir,'',($conf['securecookie'] && is_ssl())); 146f5c6743cSAndreas Gohr } 147bad31ae9SAndreas Gohr session_start(); 14814a122deSAndreas Gohr 14914a122deSAndreas Gohr // load left over messages 15014a122deSAndreas Gohr if(isset($_SESSION[DOKU_COOKIE]['msg'])){ 15114a122deSAndreas Gohr $MSG = $_SESSION[DOKU_COOKIE]['msg']; 15214a122deSAndreas Gohr unset($_SESSION[DOKU_COOKIE]['msg']); 15314a122deSAndreas Gohr } 154bad31ae9SAndreas Gohr} 155ed7b5f09Sandi 156ed7b5f09Sandi// kill magic quotes 157e55eb89cSAndreas Gohrif (get_magic_quotes_gpc() && !defined('MAGIC_QUOTES_STRIPPED')) { 158ed7b5f09Sandi if (!empty($_GET)) remove_magic_quotes($_GET); 159ed7b5f09Sandi if (!empty($_POST)) remove_magic_quotes($_POST); 160ed7b5f09Sandi if (!empty($_COOKIE)) remove_magic_quotes($_COOKIE); 161ed7b5f09Sandi if (!empty($_REQUEST)) remove_magic_quotes($_REQUEST); 1623fc74836Sandi @ini_set('magic_quotes_gpc', 0); 163e55eb89cSAndreas Gohr define('MAGIC_QUOTES_STRIPPED',1); 164ed7b5f09Sandi} 1653fc74836Sandi@set_magic_quotes_runtime(0); 1663fc74836Sandi@ini_set('magic_quotes_sybase',0); 167ed7b5f09Sandi 168a1637ffdSAndreas Gohr// don't let cookies ever interfere with request vars 169a1637ffdSAndreas Gohr$_REQUEST = array_merge($_GET,$_POST); 170a1637ffdSAndreas Gohr 1713dea4ebcSAndreas Gohr// we don't want a purge URL to be digged 172c66972f2SAdrian Langif(isset($_REQUEST['purge']) && $_SERVER['HTTP_REFERER']) unset($_REQUEST['purge']); 1733dea4ebcSAndreas Gohr 174ed7b5f09Sandi// disable gzip if not available 1758a447e5cSAndreas Gohrif($conf['compression'] == 'bz2' && !function_exists('bzopen')){ 176fe893490SAndreas Gohr $conf['compression'] = 'gz'; 177501252a5SAndreas Gohr} 178fe893490SAndreas Gohrif($conf['compression'] == 'gz' && !function_exists('gzopen')){ 179501252a5SAndreas Gohr $conf['compression'] = 0; 180ed7b5f09Sandi} 181ed7b5f09Sandi 182e656dcd4SAndreas Gohr// fix dateformat for upgraders 183e656dcd4SAndreas Gohrif(strpos($conf['dformat'],'%') === false){ 184e656dcd4SAndreas Gohr $conf['dformat'] = '%Y/%m/%d %H:%M'; 185e656dcd4SAndreas Gohr} 186e656dcd4SAndreas Gohr 1871ca31cfeSAndreas Gohr// precalculate file creation modes 1881ca31cfeSAndreas Gohrinit_creationmodes(); 189ed7b5f09Sandi 1903dc3a5f1Sandi// make real paths and check them 19198407a7aSandiinit_paths(); 1927367b368SAndreas Gohrinit_files(); 193ed7b5f09Sandi 194f1986589SMichael Klier// setup plugin controller class (can be overwritten in preload.php) 195a4e0e797SDominik Eckelmann$plugin_types = array('admin','syntax','action','renderer', 'helper','remote'); 196f1986589SMichael Klierglobal $plugin_controller_class, $plugin_controller; 197f1986589SMichael Klierif (empty($plugin_controller_class)) $plugin_controller_class = 'Doku_Plugin_Controller'; 198f1986589SMichael Klier 199c7cb395cSAdrian Lang// load libraries 200c7cb395cSAdrian Langrequire_once(DOKU_INC.'inc/load.php'); 201c7cb395cSAdrian Lang 20289177306SAndreas Gohr// input handle class 20389177306SAndreas Gohrglobal $INPUT; 20489177306SAndreas Gohr$INPUT = new Input(); 20589177306SAndreas Gohr 206f1986589SMichael Klier// initialize plugin controller 207f1986589SMichael Klier$plugin_controller = new $plugin_controller_class(); 208f1986589SMichael Klier 209f1986589SMichael Klier// initialize the event handler 210f1986589SMichael Klierglobal $EVENT_HANDLER; 211f1986589SMichael Klier$EVENT_HANDLER = new Doku_Event_Handler(); 212f1986589SMichael Klier 2136d06b26aSDominik Eckelmann$local = $conf['lang']; 2146d06b26aSDominik Eckelmanntrigger_event('INIT_LANG_LOAD', $local, 'init_lang', true); 2156d06b26aSDominik Eckelmann 2166d06b26aSDominik Eckelmann 21716905344SAndreas Gohr// setup authentication system 218c7cb395cSAdrian Langif (!defined('NOSESSION')) { 21916905344SAndreas Gohr auth_setup(); 220c7cb395cSAdrian Lang} 221f62ea8a1Sandi 2225ec3fefcSAndreas Gohr// setup mail system 2235ec3fefcSAndreas Gohrmail_setup(); 2245ec3fefcSAndreas Gohr 225f62ea8a1Sandi/** 22698407a7aSandi * Checks paths from config file 22798407a7aSandi */ 22898407a7aSandifunction init_paths(){ 22998407a7aSandi global $conf; 23098407a7aSandi 23198407a7aSandi $paths = array('datadir' => 'pages', 23298407a7aSandi 'olddir' => 'attic', 23398407a7aSandi 'mediadir' => 'media', 234e4f389efSKate Arzamastseva 'mediaolddir' => 'media_attic', 23598407a7aSandi 'metadir' => 'meta', 236e4f389efSKate Arzamastseva 'mediametadir' => 'media_meta', 23798407a7aSandi 'cachedir' => 'cache', 238579b0f7eSTNHarris 'indexdir' => 'index', 239de33a58fSMichael Klier 'lockdir' => 'locks', 240de33a58fSMichael Klier 'tmpdir' => 'tmp'); 24198407a7aSandi 24298407a7aSandi foreach($paths as $c => $p) { 2437f086b67SAnika Henke $path = empty($conf[$c]) ? $conf['savedir'].'/'.$p : $conf[$c]; 2446b9c156cSAnika Henke $conf[$c] = init_path($path); 2456b9c156cSAnika Henke if(empty($conf[$c])) 2466b9c156cSAnika Henke nice_die("The $c ('$p') at $path is not found, isn't accessible or writable. 24769dc3177SAndreas Gohr You should check your config and permission settings. 24869dc3177SAndreas Gohr Or maybe you want to <a href=\"install.php\">run the 24969dc3177SAndreas Gohr installer</a>?"); 25098407a7aSandi } 25171726d78SBen Coburn 25271726d78SBen Coburn // path to old changelog only needed for upgrading 25371726d78SBen Coburn $conf['changelog_old'] = init_path((isset($conf['changelog']))?($conf['changelog']):($conf['savedir'].'/changes.log')); 25471726d78SBen Coburn if ($conf['changelog_old']=='') { unset($conf['changelog_old']); } 25571726d78SBen Coburn // hardcoded changelog because it is now a cache that lives in meta 25671726d78SBen Coburn $conf['changelog'] = $conf['metadir'].'/_dokuwiki.changes'; 25799c8d7f2Smichael $conf['media_changelog'] = $conf['metadir'].'/_media.changes'; 25898407a7aSandi} 25998407a7aSandi 2606d06b26aSDominik Eckelmannfunction init_lang($langCode) { 2616d06b26aSDominik Eckelmann //prepare language array 2626d06b26aSDominik Eckelmann global $lang; 2636d06b26aSDominik Eckelmann $lang = array(); 2646d06b26aSDominik Eckelmann 2656d06b26aSDominik Eckelmann //load the language files 2666d06b26aSDominik Eckelmann require_once(DOKU_INC.'inc/lang/en/lang.php'); 2676d06b26aSDominik Eckelmann if ($langCode && $langCode != 'en') { 2686d06b26aSDominik Eckelmann if (file_exists(DOKU_INC."inc/lang/$langCode/lang.php")) { 2696d06b26aSDominik Eckelmann require_once(DOKU_INC."inc/lang/$langCode/lang.php"); 2706d06b26aSDominik Eckelmann } 2716d06b26aSDominik Eckelmann } 2726d06b26aSDominik Eckelmann} 2736d06b26aSDominik Eckelmann 27498407a7aSandi/** 2756b9c156cSAnika Henke * Checks the existence of certain files and creates them if missing. 2767367b368SAndreas Gohr */ 2777367b368SAndreas Gohrfunction init_files(){ 2787367b368SAndreas Gohr global $conf; 2790d8850c4SAndreas Gohr 280345b1674SAndreas Gohr $files = array($conf['indexdir'].'/page.idx'); 2817367b368SAndreas Gohr 2827367b368SAndreas Gohr foreach($files as $file){ 2837367b368SAndreas Gohr if(!@file_exists($file)){ 2840d8850c4SAndreas Gohr $fh = @fopen($file,'a'); 2850d8850c4SAndreas Gohr if($fh){ 2867367b368SAndreas Gohr fclose($fh); 2871ca31cfeSAndreas Gohr if($conf['fperm']) chmod($file, $conf['fperm']); 2880d8850c4SAndreas Gohr }else{ 2893816dcbcSAndreas Gohr nice_die("$file is not writable. Check your permissions settings!"); 2900d8850c4SAndreas Gohr } 2917367b368SAndreas Gohr } 2927367b368SAndreas Gohr } 293345b1674SAndreas Gohr 294345b1674SAndreas Gohr # create title index (needs to have same length as page.idx) 2959b41be24STom N Harris /* 296345b1674SAndreas Gohr $file = $conf['indexdir'].'/title.idx'; 297345b1674SAndreas Gohr if(!@file_exists($file)){ 298345b1674SAndreas Gohr $pages = file($conf['indexdir'].'/page.idx'); 299345b1674SAndreas Gohr $pages = count($pages); 300345b1674SAndreas Gohr $fh = @fopen($file,'a'); 301345b1674SAndreas Gohr if($fh){ 302345b1674SAndreas Gohr for($i=0; $i<$pages; $i++){ 303345b1674SAndreas Gohr fwrite($fh,"\n"); 304345b1674SAndreas Gohr } 305345b1674SAndreas Gohr fclose($fh); 306345b1674SAndreas Gohr }else{ 307345b1674SAndreas Gohr nice_die("$file is not writable. Check your permissions settings!"); 308345b1674SAndreas Gohr } 309345b1674SAndreas Gohr } 3109b41be24STom N Harris */ 3117367b368SAndreas Gohr} 3127367b368SAndreas Gohr 3137367b368SAndreas Gohr/** 3140d8850c4SAndreas Gohr * Returns absolute path 315f62ea8a1Sandi * 3160d8850c4SAndreas Gohr * This tries the given path first, then checks in DOKU_INC. 3177f086b67SAnika Henke * Check for accessibility on directories as well. 3180d8850c4SAndreas Gohr * 3190d8850c4SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 320f62ea8a1Sandi */ 321f62ea8a1Sandifunction init_path($path){ 3226b9c156cSAnika Henke // check existence 32300976812SAndreas Gohr $p = fullpath($path); 3240d8850c4SAndreas Gohr if(!@file_exists($p)){ 32500976812SAndreas Gohr $p = fullpath(DOKU_INC.$path); 3260d8850c4SAndreas Gohr if(!@file_exists($p)){ 3278fc4e739Sandi return ''; 328f62ea8a1Sandi } 3290d8850c4SAndreas Gohr } 3300d8850c4SAndreas Gohr 3310d8850c4SAndreas Gohr // check writability 3320d8850c4SAndreas Gohr if(!@is_writable($p)){ 3330d8850c4SAndreas Gohr return ''; 3340d8850c4SAndreas Gohr } 3350d8850c4SAndreas Gohr 3360d8850c4SAndreas Gohr // check accessability (execute bit) for directories 3370d8850c4SAndreas Gohr if(@is_dir($p) && !@file_exists("$p/.")){ 3380d8850c4SAndreas Gohr return ''; 3390d8850c4SAndreas Gohr } 3400d8850c4SAndreas Gohr 3410d8850c4SAndreas Gohr return $p; 3420d8850c4SAndreas Gohr} 3438c4f28e8Sjan 344ed7b5f09Sandi/** 3451ca31cfeSAndreas Gohr * Sets the internal config values fperm and dperm which, when set, 3461ca31cfeSAndreas Gohr * will be used to change the permission of a newly created dir or 3471ca31cfeSAndreas Gohr * file with chmod. Considers the influence of the system's umask 3481ca31cfeSAndreas Gohr * setting the values only if needed. 3491ca31cfeSAndreas Gohr */ 3501ca31cfeSAndreas Gohrfunction init_creationmodes(){ 3511ca31cfeSAndreas Gohr global $conf; 3521ca31cfeSAndreas Gohr 3531ca31cfeSAndreas Gohr // Legacy support for old umask/dmask scheme 3541ca31cfeSAndreas Gohr unset($conf['dmask']); 3551ca31cfeSAndreas Gohr unset($conf['fmask']); 3561ca31cfeSAndreas Gohr unset($conf['umask']); 3571ca31cfeSAndreas Gohr unset($conf['fperm']); 3581ca31cfeSAndreas Gohr unset($conf['dperm']); 3591ca31cfeSAndreas Gohr 3609f3cdec3SAndreas Gohr // get system umask, fallback to 0 if none available 3619f3cdec3SAndreas Gohr $umask = @umask(); 3629f3cdec3SAndreas Gohr if(!$umask) $umask = 0000; 3631ca31cfeSAndreas Gohr 3641ca31cfeSAndreas Gohr // check what is set automatically by the system on file creation 3651ca31cfeSAndreas Gohr // and set the fperm param if it's not what we want 3661ca31cfeSAndreas Gohr $auto_fmode = 0666 & ~$umask; 3671ca31cfeSAndreas Gohr if($auto_fmode != $conf['fmode']) $conf['fperm'] = $conf['fmode']; 3681ca31cfeSAndreas Gohr 3691ca31cfeSAndreas Gohr // check what is set automatically by the system on file creation 3701ca31cfeSAndreas Gohr // and set the dperm param if it's not what we want 3711ca31cfeSAndreas Gohr $auto_dmode = $conf['dmode'] & ~$umask; 3721ca31cfeSAndreas Gohr if($auto_dmode != $conf['dmode']) $conf['dperm'] = $conf['dmode']; 3731ca31cfeSAndreas Gohr} 3741ca31cfeSAndreas Gohr 3751ca31cfeSAndreas Gohr/** 376ed7b5f09Sandi * remove magic quotes recursivly 377ed7b5f09Sandi * 378ed7b5f09Sandi * @author Andreas Gohr <andi@splitbrain.org> 379ed7b5f09Sandi */ 380ed7b5f09Sandifunction remove_magic_quotes(&$array) { 381ed7b5f09Sandi foreach (array_keys($array) as $key) { 38281c54349SAndreas Gohr // handle magic quotes in keynames (breaks order) 38381c54349SAndreas Gohr $sk = stripslashes($key); 38481c54349SAndreas Gohr if($sk != $key){ 38581c54349SAndreas Gohr $array[$sk] = $array[$key]; 38681c54349SAndreas Gohr unset($array[$key]); 38781c54349SAndreas Gohr $key = $sk; 38881c54349SAndreas Gohr } 38981c54349SAndreas Gohr 39081c54349SAndreas Gohr // do recursion if needed 391ed7b5f09Sandi if (is_array($array[$key])) { 392ed7b5f09Sandi remove_magic_quotes($array[$key]); 393ed7b5f09Sandi }else { 394ed7b5f09Sandi $array[$key] = stripslashes($array[$key]); 395ed7b5f09Sandi } 396ed7b5f09Sandi } 397ed7b5f09Sandi} 398ed7b5f09Sandi 399ed7b5f09Sandi/** 400ed7b5f09Sandi * Returns the full absolute URL to the directory where 401ed7b5f09Sandi * DokuWiki is installed in (includes a trailing slash) 402ed7b5f09Sandi * 403ed7b5f09Sandi * @author Andreas Gohr <andi@splitbrain.org> 404ed7b5f09Sandi */ 4054b1a4e04SAndreas Gohrfunction getBaseURL($abs=null){ 406ed7b5f09Sandi global $conf; 407ed7b5f09Sandi //if canonical url enabled always return absolute 4084b1a4e04SAndreas Gohr if(is_null($abs)) $abs = $conf['canonical']; 409ed7b5f09Sandi 41092b83b77Sandi if($conf['basedir']){ 41146c73e01SChris Smith $dir = $conf['basedir']; 41289aa05dbSAndreas Gohr }elseif(substr($_SERVER['SCRIPT_NAME'],-4) == '.php'){ 41346c73e01SChris Smith $dir = dirname($_SERVER['SCRIPT_NAME']); 41489aa05dbSAndreas Gohr }elseif(substr($_SERVER['PHP_SELF'],-4) == '.php'){ 41546c73e01SChris Smith $dir = dirname($_SERVER['PHP_SELF']); 416093ec9e4Sandi }elseif($_SERVER['DOCUMENT_ROOT'] && $_SERVER['SCRIPT_FILENAME']){ 417093ec9e4Sandi $dir = preg_replace ('/^'.preg_quote($_SERVER['DOCUMENT_ROOT'],'/').'/','', 418093ec9e4Sandi $_SERVER['SCRIPT_FILENAME']); 41946c73e01SChris Smith $dir = dirname('/'.$dir); 42092b83b77Sandi }else{ 42146c73e01SChris Smith $dir = '.'; //probably wrong 42292b83b77Sandi } 423ed7b5f09Sandi 42446c73e01SChris Smith $dir = str_replace('\\','/',$dir); // bugfix for weird WIN behaviour 42546c73e01SChris Smith $dir = preg_replace('#//+#','/',"/$dir/"); // ensure leading and trailing slashes 426ed7b5f09Sandi 427f62ea8a1Sandi //handle script in lib/exe dir 428f62ea8a1Sandi $dir = preg_replace('!lib/exe/$!','',$dir); 429f62ea8a1Sandi 430488d5fa0SMichael Klier chi@chimeric.de //handle script in lib/plugins dir 431488d5fa0SMichael Klier chi@chimeric.de $dir = preg_replace('!lib/plugins/.*$!','',$dir); 432488d5fa0SMichael Klier chi@chimeric.de 433ed7b5f09Sandi //finish here for relative URLs 434ed7b5f09Sandi if(!$abs) return $dir; 435ed7b5f09Sandi 43646c73e01SChris Smith //use config option if available, trim any slash from end of baseurl to avoid multiple consecutive slashes in the path 43746c73e01SChris Smith if($conf['baseurl']) return rtrim($conf['baseurl'],'/').$dir; 438ef7b3ecdSAndreas Gohr 439e82e3526SAndreas Gohr //split hostheader into host and port 4405627186cSAndreas Gohr if(isset($_SERVER['HTTP_HOST'])){ 441204b27c8SMichael Hamann $parsed_host = parse_url('http://'.$_SERVER['HTTP_HOST']); 442204b27c8SMichael Hamann $host = $parsed_host['host']; 443204b27c8SMichael Hamann $port = $parsed_host['port']; 4445627186cSAndreas Gohr }elseif(isset($_SERVER['SERVER_NAME'])){ 445204b27c8SMichael Hamann $parsed_host = parse_url('http://'.$_SERVER['SERVER_NAME']); 446204b27c8SMichael Hamann $host = $parsed_host['host']; 447204b27c8SMichael Hamann $port = $parsed_host['port']; 4485627186cSAndreas Gohr }else{ 4495627186cSAndreas Gohr $host = php_uname('n'); 450c66972f2SAdrian Lang $port = ''; 4515627186cSAndreas Gohr } 4525627186cSAndreas Gohr 4535627186cSAndreas Gohr if(!$port && isset($_SERVER['SERVER_PORT'])) { 454c66972f2SAdrian Lang $port = $_SERVER['SERVER_PORT']; 455c66972f2SAdrian Lang } 456204b27c8SMichael Hamann 457204b27c8SMichael Hamann if(is_null($port)){ 458204b27c8SMichael Hamann $port = ''; 459204b27c8SMichael Hamann } 460204b27c8SMichael Hamann 461f5c6743cSAndreas Gohr if(!is_ssl()){ 462ed7b5f09Sandi $proto = 'http://'; 463e82e3526SAndreas Gohr if ($port == '80') { 464ed7b5f09Sandi $port = ''; 465ed7b5f09Sandi } 466ed7b5f09Sandi }else{ 467ed7b5f09Sandi $proto = 'https://'; 468e82e3526SAndreas Gohr if ($port == '443') { 469ed7b5f09Sandi $port = ''; 470ed7b5f09Sandi } 471ed7b5f09Sandi } 472ed7b5f09Sandi 473c66972f2SAdrian Lang if($port !== '') $port = ':'.$port; 474e82e3526SAndreas Gohr 475ed7b5f09Sandi return $proto.$host.$port.$dir; 476ed7b5f09Sandi} 477ed7b5f09Sandi 478b000c6d4Sandi/** 479f5c6743cSAndreas Gohr * Check if accessed via HTTPS 480f5c6743cSAndreas Gohr * 481f5c6743cSAndreas Gohr * Apache leaves ,$_SERVER['HTTPS'] empty when not available, IIS sets it to 'off'. 482f5c6743cSAndreas Gohr * 'false' and 'disabled' are just guessing 483f5c6743cSAndreas Gohr * 484f5c6743cSAndreas Gohr * @returns bool true when SSL is active 485f5c6743cSAndreas Gohr */ 486f5c6743cSAndreas Gohrfunction is_ssl(){ 487c66972f2SAdrian Lang if (!isset($_SERVER['HTTPS']) || 488c66972f2SAdrian Lang preg_match('/^(|off|false|disabled)$/i',$_SERVER['HTTPS'])){ 489f5c6743cSAndreas Gohr return false; 490f5c6743cSAndreas Gohr }else{ 491f5c6743cSAndreas Gohr return true; 492f5c6743cSAndreas Gohr } 493f5c6743cSAndreas Gohr} 494f5c6743cSAndreas Gohr 495f5c6743cSAndreas Gohr/** 4963816dcbcSAndreas Gohr * print a nice message even if no styles are loaded yet. 4973816dcbcSAndreas Gohr */ 4983816dcbcSAndreas Gohrfunction nice_die($msg){ 4993816dcbcSAndreas Gohr echo<<<EOT 5003816dcbcSAndreas Gohr<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 5013816dcbcSAndreas Gohr "http://www.w3.org/TR/html4/loose.dtd"> 5023816dcbcSAndreas Gohr<html> 5033816dcbcSAndreas Gohr<head><title>DokuWiki Setup Error</title></head> 5043816dcbcSAndreas Gohr<body style="font-family: Arial, sans-serif"> 5053816dcbcSAndreas Gohr <div style="width:60%; margin: auto; background-color: #fcc; 5063816dcbcSAndreas Gohr border: 1px solid #faa; padding: 0.5em 1em;"> 5073816dcbcSAndreas Gohr <h1 style="font-size: 120%">DokuWiki Setup Error</h1> 5083816dcbcSAndreas Gohr <p>$msg</p> 5093816dcbcSAndreas Gohr </div> 5103816dcbcSAndreas Gohr</body> 5113816dcbcSAndreas Gohr</html> 5123816dcbcSAndreas GohrEOT; 5133816dcbcSAndreas Gohr exit; 5143816dcbcSAndreas Gohr} 5153816dcbcSAndreas Gohr 51600976812SAndreas Gohr/** 51700976812SAndreas Gohr * A realpath() replacement 51800976812SAndreas Gohr * 51900976812SAndreas Gohr * This function behaves similar to PHP's realpath() but does not resolve 52000976812SAndreas Gohr * symlinks or accesses upper directories 52100976812SAndreas Gohr * 5224761d30cSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 52300976812SAndreas Gohr * @author <richpageau at yahoo dot co dot uk> 52400976812SAndreas Gohr * @link http://de3.php.net/manual/en/function.realpath.php#75992 52500976812SAndreas Gohr */ 526b328697dSAndreas Gohrfunction fullpath($path,$exists=false){ 5274761d30cSAndreas Gohr static $run = 0; 5284761d30cSAndreas Gohr $root = ''; 529f0a201c5SChris Smith $iswin = (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN' || @$GLOBALS['DOKU_UNITTEST_ASSUME_WINDOWS']); 53000976812SAndreas Gohr 5314761d30cSAndreas Gohr // find the (indestructable) root of the path - keeps windows stuff intact 5324761d30cSAndreas Gohr if($path{0} == '/'){ 5334761d30cSAndreas Gohr $root = '/'; 5344761d30cSAndreas Gohr }elseif($iswin){ 5354761d30cSAndreas Gohr // match drive letter and UNC paths 5364761d30cSAndreas Gohr if(preg_match('!^([a-zA-z]:)(.*)!',$path,$match)){ 537b9c4302bSAndreas Gohr $root = $match[1].'/'; 5384761d30cSAndreas Gohr $path = $match[2]; 5394761d30cSAndreas Gohr }else if(preg_match('!^(\\\\\\\\[^\\\\/]+\\\\[^\\\\/]+[\\\\/])(.*)!',$path,$match)){ 5404761d30cSAndreas Gohr $root = $match[1]; 5414761d30cSAndreas Gohr $path = $match[2]; 54200976812SAndreas Gohr } 5434761d30cSAndreas Gohr } 5444761d30cSAndreas Gohr $path = str_replace('\\','/',$path); 5454761d30cSAndreas Gohr 5464761d30cSAndreas Gohr // if the given path wasn't absolute already, prepend the script path and retry 5474761d30cSAndreas Gohr if(!$root){ 5484761d30cSAndreas Gohr $base = dirname($_SERVER['SCRIPT_FILENAME']); 5494761d30cSAndreas Gohr $path = $base.'/'.$path; 5504761d30cSAndreas Gohr if($run == 0){ // avoid endless recursion when base isn't absolute for some reason 5514761d30cSAndreas Gohr $run++; 552b328697dSAndreas Gohr return fullpath($path,$exists); 5534761d30cSAndreas Gohr } 5544761d30cSAndreas Gohr } 5554761d30cSAndreas Gohr $run = 0; 55600976812SAndreas Gohr 55700976812SAndreas Gohr // canonicalize 55800976812SAndreas Gohr $path=explode('/', $path); 55900976812SAndreas Gohr $newpath=array(); 560ef38bfe8SAndreas Gohr foreach($path as $p) { 561ef38bfe8SAndreas Gohr if ($p === '' || $p === '.') continue; 562ef38bfe8SAndreas Gohr if ($p==='..') { 56300976812SAndreas Gohr array_pop($newpath); 56400976812SAndreas Gohr continue; 56500976812SAndreas Gohr } 566ef38bfe8SAndreas Gohr array_push($newpath, $p); 56700976812SAndreas Gohr } 5684761d30cSAndreas Gohr $finalpath = $root.implode('/', $newpath); 56900976812SAndreas Gohr 5706b9c156cSAnika Henke // check for existence when needed (except when unit testing) 571b328697dSAndreas Gohr if($exists && !defined('DOKU_UNITTEST') && !@file_exists($finalpath)) { 5724761d30cSAndreas Gohr return false; 57300976812SAndreas Gohr } 5744761d30cSAndreas Gohr return $finalpath; 57500976812SAndreas Gohr} 57600976812SAndreas Gohr 577