1ed7b5f09Sandi<?php 2ed7b5f09Sandi/** 3ed7b5f09Sandi * Initialize some defaults needed for DokuWiki 4ed7b5f09Sandi */ 5ed7b5f09Sandi 6*a609a9ccSBen Coburn // start timing Dokuwiki execution 7*a609a9ccSBen Coburn function delta_time($start=0) { 8*a609a9ccSBen Coburn list($usec, $sec) = explode(" ", microtime()); 9*a609a9ccSBen Coburn return ((float)$usec+(float)$sec)-((float)$start); 10*a609a9ccSBen Coburn } 11*a609a9ccSBen Coburn define('DOKU_START_TIME', delta_time()); 12*a609a9ccSBen Coburn 13ed7b5f09Sandi // define the include path 14ed7b5f09Sandi if(!defined('DOKU_INC')) define('DOKU_INC',realpath(dirname(__FILE__).'/../').'/'); 15ad15db82Sandi 16e7cb32dcSAndreas Gohr // define config path (packagers may want to change this to /etc/dokuwiki/) 17b7551a6dSEsther Brunner if(!defined('DOKU_CONF')) define('DOKU_CONF',DOKU_INC.'conf/'); 18e7cb32dcSAndreas Gohr 19c53ea5f2Sandi // set up error reporting to sane values 20c53ea5f2Sandi error_reporting(E_ALL ^ E_NOTICE); 21c53ea5f2Sandi 224724a577Sandi //prepare config array() 23ee20e7d1Sandi global $conf; 244724a577Sandi $conf = array(); 254724a577Sandi 26ad15db82Sandi // load the config file(s) 27e7cb32dcSAndreas Gohr require_once(DOKU_CONF.'dokuwiki.php'); 280a6ead41SAndreas Gohr if(@file_exists(DOKU_CONF.'local.php')){ 290a6ead41SAndreas Gohr require_once(DOKU_CONF.'local.php'); 300a6ead41SAndreas Gohr } 31ad15db82Sandi 32ad15db82Sandi //prepare language array 33ee20e7d1Sandi global $lang; 34ad15db82Sandi $lang = array(); 35ed7b5f09Sandi 3616521111Sandi //load the language files 37bc3b6aecSandi require_once(DOKU_INC.'inc/lang/en/lang.php'); 38f949a01cSAndreas Gohr if ( $conf['lang'] && $conf['lang'] != 'en' ) { 39bc3b6aecSandi require_once(DOKU_INC.'inc/lang/'.$conf['lang'].'/lang.php'); 40fc1c55b1Shfuecks } 4116521111Sandi 42ed7b5f09Sandi // define baseURL 43ed7b5f09Sandi if(!defined('DOKU_BASE')) define('DOKU_BASE',getBaseURL()); 44ed7b5f09Sandi if(!defined('DOKU_URL')) define('DOKU_URL',getBaseURL(true)); 45ed7b5f09Sandi 46ee20e7d1Sandi // define Plugin dir 47f62ea8a1Sandi if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/'); 48ee20e7d1Sandi 49ed7b5f09Sandi // define main script 50ed7b5f09Sandi if(!defined('DOKU_SCRIPT')) define('DOKU_SCRIPT','doku.php'); 51ed7b5f09Sandi 526b13307fSandi // define Template baseURL 536b13307fSandi if(!defined('DOKU_TPL')) define('DOKU_TPL', 54f62ea8a1Sandi DOKU_BASE.'lib/tpl/'.$conf['template'].'/'); 556b13307fSandi 5678a6aeb1SAndreas Gohr // define real Template directory 5778a6aeb1SAndreas Gohr if(!defined('DOKU_TPLINC')) define('DOKU_TPLINC', 5878a6aeb1SAndreas Gohr DOKU_INC.'lib/tpl/'.$conf['template'].'/'); 5978a6aeb1SAndreas Gohr 60ed7b5f09Sandi // make session rewrites XHTML compliant 613fc74836Sandi @ini_set('arg_separator.output', '&'); 62ed7b5f09Sandi 63ed7b5f09Sandi // init session 646534245aSAndreas Gohr if (!headers_sent() && !defined('NOSESSION')){ 65ed7b5f09Sandi session_name("DokuWiki"); 66bad31ae9SAndreas Gohr session_start(); 67bad31ae9SAndreas Gohr } 68ed7b5f09Sandi 69ed7b5f09Sandi // kill magic quotes 70e55eb89cSAndreas Gohr if (get_magic_quotes_gpc() && !defined('MAGIC_QUOTES_STRIPPED')) { 71ed7b5f09Sandi if (!empty($_GET)) remove_magic_quotes($_GET); 72ed7b5f09Sandi if (!empty($_POST)) remove_magic_quotes($_POST); 73ed7b5f09Sandi if (!empty($_COOKIE)) remove_magic_quotes($_COOKIE); 74ed7b5f09Sandi if (!empty($_REQUEST)) remove_magic_quotes($_REQUEST); 7556146e0dSAndreas Gohr# if (!empty($_SESSION)) remove_magic_quotes($_SESSION); #FIXME needed ? 763fc74836Sandi @ini_set('magic_quotes_gpc', 0); 77e55eb89cSAndreas Gohr define('MAGIC_QUOTES_STRIPPED',1); 78ed7b5f09Sandi } 793fc74836Sandi @set_magic_quotes_runtime(0); 803fc74836Sandi @ini_set('magic_quotes_sybase',0); 81ed7b5f09Sandi 82ed7b5f09Sandi // disable gzip if not available 83ed7b5f09Sandi if($conf['usegzip'] && !function_exists('gzopen')){ 84ed7b5f09Sandi $conf['usegzip'] = 0; 85ed7b5f09Sandi } 86ed7b5f09Sandi 871ca31cfeSAndreas Gohr // precalculate file creation modes 881ca31cfeSAndreas Gohr init_creationmodes(); 89ed7b5f09Sandi 903dc3a5f1Sandi // make real paths and check them 9198407a7aSandi init_paths(); 927367b368SAndreas Gohr init_files(); 93ed7b5f09Sandi 948c4f28e8Sjan // automatic upgrade to script versions of certain files 95e7cb32dcSAndreas Gohr scriptify(DOKU_CONF.'users.auth'); 96e7cb32dcSAndreas Gohr scriptify(DOKU_CONF.'acl.auth'); 97f62ea8a1Sandi 98f62ea8a1Sandi 99f62ea8a1Sandi/** 10098407a7aSandi * Checks paths from config file 10198407a7aSandi */ 10298407a7aSandifunction init_paths(){ 10398407a7aSandi global $conf; 10498407a7aSandi 10598407a7aSandi $paths = array('datadir' => 'pages', 10698407a7aSandi 'olddir' => 'attic', 10798407a7aSandi 'mediadir' => 'media', 10898407a7aSandi 'metadir' => 'meta', 10998407a7aSandi 'cachedir' => 'cache', 11098407a7aSandi 'lockdir' => 'locks', 11198407a7aSandi 'changelog' => 'changes.log'); 11298407a7aSandi 11398407a7aSandi foreach($paths as $c => $p){ 11498407a7aSandi if(!$conf[$c]) $conf[$c] = $conf['savedir'].'/'.$p; 11598407a7aSandi $conf[$c] = init_path($conf[$c]); 1163816dcbcSAndreas Gohr if(!$conf[$c]) nice_die("The $c does not exist, isn't accessable or writable. 1173816dcbcSAndreas Gohr Check your config and permission settings!"); 11898407a7aSandi } 11998407a7aSandi} 12098407a7aSandi 12198407a7aSandi/** 1220d8850c4SAndreas Gohr * Checks the existance of certain files and creates them if missing. 1237367b368SAndreas Gohr */ 1247367b368SAndreas Gohrfunction init_files(){ 1257367b368SAndreas Gohr global $conf; 1260d8850c4SAndreas Gohr 1277367b368SAndreas Gohr $files = array( $conf['cachedir'].'/word.idx', 1287367b368SAndreas Gohr $conf['cachedir'].'/page.idx', 1290d8850c4SAndreas Gohr $conf['cachedir'].'/index.idx'); 1307367b368SAndreas Gohr 1317367b368SAndreas Gohr foreach($files as $file){ 1327367b368SAndreas Gohr if(!@file_exists($file)){ 1330d8850c4SAndreas Gohr $fh = @fopen($file,'a'); 1340d8850c4SAndreas Gohr if($fh){ 1357367b368SAndreas Gohr fclose($fh); 1361ca31cfeSAndreas Gohr if($conf['fperm']) chmod($file, $conf['fperm']); 1370d8850c4SAndreas Gohr }else{ 1383816dcbcSAndreas Gohr nice_die("$file is not writable. Check your permissions settings!"); 1390d8850c4SAndreas Gohr } 1407367b368SAndreas Gohr } 1417367b368SAndreas Gohr } 1427367b368SAndreas Gohr} 1437367b368SAndreas Gohr 1447367b368SAndreas Gohr/** 1450d8850c4SAndreas Gohr * Returns absolute path 146f62ea8a1Sandi * 1470d8850c4SAndreas Gohr * This tries the given path first, then checks in DOKU_INC. 1480d8850c4SAndreas Gohr * Check for accessability on directories as well. 1490d8850c4SAndreas Gohr * 1500d8850c4SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 151f62ea8a1Sandi */ 152f62ea8a1Sandifunction init_path($path){ 1530d8850c4SAndreas Gohr // check existance 154f62ea8a1Sandi $p = realpath($path); 1550d8850c4SAndreas Gohr if(!@file_exists($p)){ 156f62ea8a1Sandi $p = realpath(DOKU_INC.$path); 1570d8850c4SAndreas Gohr if(!@file_exists($p)){ 1588fc4e739Sandi return ''; 159f62ea8a1Sandi } 1600d8850c4SAndreas Gohr } 1610d8850c4SAndreas Gohr 1620d8850c4SAndreas Gohr // check writability 1630d8850c4SAndreas Gohr if(!@is_writable($p)){ 1640d8850c4SAndreas Gohr return ''; 1650d8850c4SAndreas Gohr } 1660d8850c4SAndreas Gohr 1670d8850c4SAndreas Gohr // check accessability (execute bit) for directories 1680d8850c4SAndreas Gohr if(@is_dir($p) && !@file_exists("$p/.")){ 1690d8850c4SAndreas Gohr return ''; 1700d8850c4SAndreas Gohr } 1710d8850c4SAndreas Gohr 1720d8850c4SAndreas Gohr return $p; 1730d8850c4SAndreas Gohr} 1748c4f28e8Sjan 175ed7b5f09Sandi/** 1761ca31cfeSAndreas Gohr * Sets the internal config values fperm and dperm which, when set, 1771ca31cfeSAndreas Gohr * will be used to change the permission of a newly created dir or 1781ca31cfeSAndreas Gohr * file with chmod. Considers the influence of the system's umask 1791ca31cfeSAndreas Gohr * setting the values only if needed. 1801ca31cfeSAndreas Gohr */ 1811ca31cfeSAndreas Gohrfunction init_creationmodes(){ 1821ca31cfeSAndreas Gohr global $conf; 1831ca31cfeSAndreas Gohr 1841ca31cfeSAndreas Gohr // Legacy support for old umask/dmask scheme 1851ca31cfeSAndreas Gohr unset($conf['dmask']); 1861ca31cfeSAndreas Gohr unset($conf['fmask']); 1871ca31cfeSAndreas Gohr unset($conf['umask']); 1881ca31cfeSAndreas Gohr unset($conf['fperm']); 1891ca31cfeSAndreas Gohr unset($conf['dperm']); 1901ca31cfeSAndreas Gohr 1919f3cdec3SAndreas Gohr // get system umask, fallback to 0 if none available 1929f3cdec3SAndreas Gohr $umask = @umask(); 1939f3cdec3SAndreas Gohr if(!$umask) $umask = 0000; 1941ca31cfeSAndreas Gohr 1951ca31cfeSAndreas Gohr // check what is set automatically by the system on file creation 1961ca31cfeSAndreas Gohr // and set the fperm param if it's not what we want 1971ca31cfeSAndreas Gohr $auto_fmode = 0666 & ~$umask; 1981ca31cfeSAndreas Gohr if($auto_fmode != $conf['fmode']) $conf['fperm'] = $conf['fmode']; 1991ca31cfeSAndreas Gohr 2001ca31cfeSAndreas Gohr // check what is set automatically by the system on file creation 2011ca31cfeSAndreas Gohr // and set the dperm param if it's not what we want 2021ca31cfeSAndreas Gohr $auto_dmode = $conf['dmode'] & ~$umask; 2031ca31cfeSAndreas Gohr if($auto_dmode != $conf['dmode']) $conf['dperm'] = $conf['dmode']; 2041ca31cfeSAndreas Gohr} 2051ca31cfeSAndreas Gohr 2061ca31cfeSAndreas Gohr/** 207ed7b5f09Sandi * remove magic quotes recursivly 208ed7b5f09Sandi * 209ed7b5f09Sandi * @author Andreas Gohr <andi@splitbrain.org> 210ed7b5f09Sandi */ 211ed7b5f09Sandifunction remove_magic_quotes(&$array) { 212ed7b5f09Sandi foreach (array_keys($array) as $key) { 213ed7b5f09Sandi if (is_array($array[$key])) { 214ed7b5f09Sandi remove_magic_quotes($array[$key]); 215ed7b5f09Sandi }else { 216ed7b5f09Sandi $array[$key] = stripslashes($array[$key]); 217ed7b5f09Sandi } 218ed7b5f09Sandi } 219ed7b5f09Sandi} 220ed7b5f09Sandi 221ed7b5f09Sandi/** 222ed7b5f09Sandi * Returns the full absolute URL to the directory where 223ed7b5f09Sandi * DokuWiki is installed in (includes a trailing slash) 224ed7b5f09Sandi * 225ed7b5f09Sandi * @author Andreas Gohr <andi@splitbrain.org> 226ed7b5f09Sandi */ 227ed7b5f09Sandifunction getBaseURL($abs=false){ 228ed7b5f09Sandi global $conf; 229ed7b5f09Sandi //if canonical url enabled always return absolute 230ed7b5f09Sandi if($conf['canonical']) $abs = true; 231ed7b5f09Sandi 23292b83b77Sandi if($conf['basedir']){ 233919eeb46Sandi $dir = $conf['basedir'].'/'; 23489aa05dbSAndreas Gohr }elseif(substr($_SERVER['SCRIPT_NAME'],-4) == '.php'){ 235bdc127a4Sandi $dir = dirname($_SERVER['SCRIPT_NAME']).'/'; 23689aa05dbSAndreas Gohr }elseif(substr($_SERVER['PHP_SELF'],-4) == '.php'){ 23789aa05dbSAndreas Gohr $dir = dirname($_SERVER['PHP_SELF']).'/'; 238093ec9e4Sandi }elseif($_SERVER['DOCUMENT_ROOT'] && $_SERVER['SCRIPT_FILENAME']){ 239093ec9e4Sandi $dir = preg_replace ('/^'.preg_quote($_SERVER['DOCUMENT_ROOT'],'/').'/','', 240093ec9e4Sandi $_SERVER['SCRIPT_FILENAME']); 241093ec9e4Sandi $dir = dirname('/'.$dir).'/'; 24292b83b77Sandi }else{ 24389aa05dbSAndreas Gohr $dir = './'; //probably wrong 24492b83b77Sandi } 245ed7b5f09Sandi 246ed7b5f09Sandi $dir = str_replace('\\','/',$dir); #bugfix for weird WIN behaviour 247ed7b5f09Sandi $dir = preg_replace('#//+#','/',$dir); 248ed7b5f09Sandi 249f62ea8a1Sandi //handle script in lib/exe dir 250f62ea8a1Sandi $dir = preg_replace('!lib/exe/$!','',$dir); 251f62ea8a1Sandi 252ed7b5f09Sandi //finish here for relative URLs 253ed7b5f09Sandi if(!$abs) return $dir; 254ed7b5f09Sandi 255ef7b3ecdSAndreas Gohr //use config option if available 256ef7b3ecdSAndreas Gohr if($conf['baseurl']) return $conf['baseurl'].$dir; 257ef7b3ecdSAndreas Gohr 258e82e3526SAndreas Gohr //split hostheader into host and port 259e82e3526SAndreas Gohr list($host,$port) = explode(':',$_SERVER['HTTP_HOST']); 260e82e3526SAndreas Gohr if(!$port) $port = $_SERVER['SERVER_PORT']; 261e82e3526SAndreas Gohr if(!$port) $port = 80; 262ed7b5f09Sandi 263ed7b5f09Sandi // see if HTTPS is enabled - apache leaves this empty when not available, 264ed7b5f09Sandi // IIS sets it to 'off', 'false' and 'disabled' are just guessing 265ed7b5f09Sandi if (preg_match('/^(|off|false|disabled)$/i',$_SERVER['HTTPS'])){ 266ed7b5f09Sandi $proto = 'http://'; 267e82e3526SAndreas Gohr if ($port == '80') { 268ed7b5f09Sandi $port=''; 269ed7b5f09Sandi } 270ed7b5f09Sandi }else{ 271ed7b5f09Sandi $proto = 'https://'; 272e82e3526SAndreas Gohr if ($port == '443') { 273ed7b5f09Sandi $port=''; 274ed7b5f09Sandi } 275ed7b5f09Sandi } 276ed7b5f09Sandi 277e82e3526SAndreas Gohr if($port) $port = ':'.$port; 278e82e3526SAndreas Gohr 279ed7b5f09Sandi return $proto.$host.$port.$dir; 280ed7b5f09Sandi} 281ed7b5f09Sandi 282b000c6d4Sandi/** 283b000c6d4Sandi * Append a PHP extension to a given file and adds an exit call 284b000c6d4Sandi * 285b000c6d4Sandi * This is used to migrate some old configfiles. An added PHP extension 286b000c6d4Sandi * ensures the contents are not shown to webusers even if .htaccess files 287b000c6d4Sandi * do not work 288b000c6d4Sandi * 289b000c6d4Sandi * @author Jan Decaluwe <jan@jandecaluwe.com> 290b000c6d4Sandi */ 2918c4f28e8Sjanfunction scriptify($file) { 2928c4f28e8Sjan // checks 2938c4f28e8Sjan if (!is_readable($file)) { 2948c4f28e8Sjan return; 2958c4f28e8Sjan } 2968c4f28e8Sjan $fn = $file.'.php'; 2978c4f28e8Sjan if (@file_exists($fn)) { 2988c4f28e8Sjan return; 2998c4f28e8Sjan } 3008c4f28e8Sjan $fh = fopen($fn, 'w'); 3018c4f28e8Sjan if (!$fh) { 3023816dcbcSAndreas Gohr nice_die($fn.' is not writable. Check your permission settings!'); 3038c4f28e8Sjan } 3048c4f28e8Sjan // write php exit hack first 3058c4f28e8Sjan fwrite($fh, "# $fn\n"); 3068c4f28e8Sjan fwrite($fh, '# <?php exit()?>'."\n"); 3078c4f28e8Sjan fwrite($fh, "# Don't modify the lines above\n"); 3088c4f28e8Sjan fwrite($fh, "#\n"); 3098c4f28e8Sjan // copy existing lines 3108c4f28e8Sjan $lines = file($file); 3118c4f28e8Sjan foreach ($lines as $line){ 3128c4f28e8Sjan fwrite($fh, $line); 3138c4f28e8Sjan } 3143ba793e2Sandi fclose($fh); 315b000c6d4Sandi //try to rename the old file 316b000c6d4Sandi @rename($file,"$file.old"); 3178c4f28e8Sjan} 3188c4f28e8Sjan 3193816dcbcSAndreas Gohr/** 3203816dcbcSAndreas Gohr * print a nice message even if no styles are loaded yet. 3213816dcbcSAndreas Gohr */ 3223816dcbcSAndreas Gohrfunction nice_die($msg){ 3233816dcbcSAndreas Gohr echo<<<EOT 3243816dcbcSAndreas Gohr <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 3253816dcbcSAndreas Gohr "http://www.w3.org/TR/html4/loose.dtd"> 3263816dcbcSAndreas Gohr <html> 3273816dcbcSAndreas Gohr <head><title>DokuWiki Setup Error</title></head> 3283816dcbcSAndreas Gohr <body style="font-family: Arial, sans-serif"> 3293816dcbcSAndreas Gohr <div style="width:60%; margin: auto; background-color: #fcc; 3303816dcbcSAndreas Gohr border: 1px solid #faa; padding: 0.5em 1em;"> 3313816dcbcSAndreas Gohr <h1 style="font-size: 120%">DokuWiki Setup Error</h1> 3323816dcbcSAndreas Gohr <p>$msg</p> 3333816dcbcSAndreas Gohr </div> 3343816dcbcSAndreas Gohr </body> 3353816dcbcSAndreas Gohr </html> 3363816dcbcSAndreas GohrEOT; 3373816dcbcSAndreas Gohr exit; 3383816dcbcSAndreas Gohr} 3393816dcbcSAndreas Gohr 340ed7b5f09Sandi 341340756e4Sandi//Setup VIM: ex: et ts=2 enc=utf-8 : 342