]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/IniConfig.php
New FSF address
[SourceForge/phpwiki.git] / lib / IniConfig.php
1 <?php
2 // $Id$
3 /**
4  * A configurator intended to read its config from a PHP-style INI file,
5  * instead of a PHP file.
6  *
7  * Pass a filename to the IniConfig() function and it will read all its
8  * definitions from there, all by itself, and proceed to do a mass-define
9  * of all valid PHPWiki config items.  In this way, we can hopefully be
10  * totally backwards-compatible with the old index.php method, while still
11  * providing a much tastier on-going experience.
12  *
13  * @author: Joby Walker, Reini Urban, Matthew Palmer
14  */
15 /*
16  * Copyright 2004,2005,2006,2007 $ThePhpWikiProgrammingTeam
17  * Copyright 2008-2010 Marc-Etienne Vargenau, Alcatel-Lucent
18  *
19  * This file is part of PhpWiki.
20  *
21  * PhpWiki is free software; you can redistribute it and/or modify
22  * it under the terms of the GNU General Public License as published by
23  * the Free Software Foundation; either version 2 of the License, or
24  * (at your option) any later version.
25  *
26  * PhpWiki is distributed in the hope that it will be useful,
27  * but WITHOUT ANY WARRANTY; without even the implied warranty of
28  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
29  * GNU General Public License for more details.
30  *
31  * You should have received a copy of the GNU General Public License along
32  * with PhpWiki; if not, write to the Free Software Foundation, Inc.,
33  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
34  */
35
36 /**
37  * DONE:
38  * - Convert the value lists to provide defaults, so that every "if
39  *      (defined())" and "if (!defined())" can fuck off to the dismal hole
40  *      it belongs in.
41  * - config.ini => config.php dumper for faster startup. (really faster? to time)
42  *
43  * TODO:
44  * - Old-style index.php => config/config.ini converter.
45  *
46  * - Don't use too much globals for easier integration into other projects
47  *   (namespace pollution). (FusionForge, phpnuke, postnuke, phpBB2, carolina, ...)
48  *   Use one global $phpwiki object instead which holds the cfg vars, constants
49  *   and all other globals.
50  *     (global $FieldSeparator, $charset, $WikiNameRegexp, $KeywordLinkRegexp;
51  *      global $DisabledActions, $DBParams, $LANG, $AllActionPages)
52  *
53  * - Resurrect the larger "config object" code (in config/) so it'll aid the
54  *   GUI config writers, and allow us to do proper validation and default
55  *   value handling.
56  *
57  * - Get rid of WikiNameRegexp and KeywordLinkRegexp as globals by finding
58  *   everywhere that uses them as variables and modify the code to use
59  *   them as constants.
60  */
61
62 include_once (dirname(__FILE__)."/config.php");
63 include_once (dirname(__FILE__)."/FileFinder.php");
64
65 /**
66  * Speed-up iniconfig loading.
67  *
68  * Dump the static parts of the parsed config/config.ini settings to a fast-loadable config.php file.
69  * The dynamic parts are then evaluated as before.
70  * Requires write-permissions to config/config.php
71  */
72 function save_dump($file) {
73     $vars =& $GLOBALS; // copy + unset not possible
74     $ignore = array();
75     foreach (array("SERVER","ENV","GET","POST","REQUEST","COOKIE","FILES") as $key) {
76         $ignore["HTTP_".$key."_VARS"]++;
77         $ignore["_".$key]++;
78     }
79     foreach (array("HTTP_POST_FILES","GLOBALS","RUNTIMER","ErrorManager",'LANG',
80                'HOME_PAGE','request','SCRIPT_NAME','VIRTUAL_PATH','SCRIPT_FILENAME') as $key)
81         $ignore[$key]++;
82     $fp = fopen($file, "wb");
83     fwrite($fp,"<?php\n");
84     fwrite($fp,"function wiki_configrestore(){\n");
85     //TODO: optimize this by removing ignore, big serialized array and merge into existing GLOBALS
86     foreach ($vars as $var => $val) {
87         if (!$ignore[$var])
88             fwrite($fp, "\$GLOBALS['".$var."']=unserialize(\""
89                         .addslashes(serialize($val))."\");\n");
90     }
91     // cannot be optimized, maybe leave away predefined consts somehow
92     foreach (get_defined_constants() as $var => $val) {
93         if (substr($var,0,4) != "PHP_" and substr($var,0,2) != "E_"
94             and substr($var,0,2) != "T_"  and substr($var,0,2) != "M_")
95             fwrite($fp, "if(!defined('".$var."')) define('".$var."',unserialize(\""
96                         .addslashes(serialize($val))."\"));\n");
97     }
98     fwrite($fp, "return 'noerr';}");
99     fwrite($fp,"?>");
100     fclose($fp);
101 }
102
103 function _check_int_constant(&$c) {
104   // if int value == string value, force int type
105   if (sprintf("%d",(int)$c) === $c) { // DEBUG & _DEBUG_bla
106     $c = (int)$c;
107   }
108 }
109
110 function IniConfig($file) {
111
112     // Optionally check config/config.php dump for faster startup
113     $dump = substr($file, 0, -3)."php";
114     if (isWindows($dump)) $dump = str_replace("/","\\",$dump);
115     if (file_exists($dump) and is_readable($dump) and filesize($dump) > 0 and sort_file_mtime($dump, $file) < 0) {
116         @include($dump) or die("Error including " . $dump);
117         if (function_exists('wiki_configrestore') and (wiki_configrestore() === 'noerr')) {
118             fixup_dynamic_configs();
119             return;
120         }
121     }
122
123     // First-time installer detection here...
124     // Similar to SetupWiki()
125     if (!file_exists($file)) {
126         // We need to DATA_PATH for configurator, or pass the posted values
127         // somewhow to the script
128         $GLOBALS['charset'] = 'utf-8';
129         include_once(dirname(__FILE__)."/install.php");
130         run_install("_part1");
131         if (!defined("_PHPWIKI_INSTALL_RUNNING"))
132             trigger_error("Datasource file '$file' does not exist", E_USER_ERROR);
133         exit();
134     }
135
136     // List of all valid config options to be define()d which take "values" (not
137     // booleans). Needs to be categorised, and generally made a lot tidier.
138     $_IC_VALID_VALUE = array
139         ('WIKI_NAME', 'ADMIN_USER', 'ADMIN_PASSWD',
140          'DEFAULT_DUMP_DIR', 'HTML_DUMP_DIR',
141          'HTML_DUMP_SUFFIX', 'MAX_UPLOAD_SIZE', 'MINOR_EDIT_TIMEOUT',
142          'ACCESS_LOG', 'CACHE_CONTROL', 'CACHE_CONTROL_MAX_AGE',
143          'COOKIE_EXPIRATION_DAYS', 'COOKIE_DOMAIN',
144          'PASSWORD_LENGTH_MINIMUM', 'USER_AUTH_POLICY',
145          'GROUP_METHOD',
146          'EDITING_POLICY', 'THEME', 'CHARSET',
147          'WIKI_PGSRC', 'DEFAULT_WIKI_PGSRC',
148          'ALLOWED_PROTOCOLS', 'INLINE_IMAGES', 'SUBPAGE_SEPARATOR', /*'KEYWORDS',*/
149          // extra logic:
150          //'DATABASE_PREFIX', 'DATABASE_DSN', 'DATABASE_TYPE', 'DATABASE_DBHANDLER',
151          'DATABASE_OPTIMISE_FREQUENCY',
152          'INTERWIKI_MAP_FILE', 'COPYRIGHTPAGE_TITLE', 'COPYRIGHTPAGE_URL',
153          'AUTHORPAGE_TITLE', 'AUTHORPAGE_URL',
154          'WIKI_NAME_REGEXP',
155          'PLUGIN_CACHED_DATABASE', 'PLUGIN_CACHED_FILENAME_PREFIX',
156          'PLUGIN_CACHED_HIGHWATER', 'PLUGIN_CACHED_LOWWATER', 'PLUGIN_CACHED_MAXLIFETIME',
157          'PLUGIN_CACHED_MAXARGLEN', 'PLUGIN_CACHED_IMGTYPES',
158          'WYSIWYG_BACKEND', 'PLUGIN_MARKUP_MAP',
159          // extra logic:
160          'SERVER_NAME','SERVER_PORT','SCRIPT_NAME', 'DATA_PATH', 'PHPWIKI_DIR', 'VIRTUAL_PATH',
161          'EXTERNAL_HTML2PDF_PAGELIST', 'PLUGIN_CACHED_CACHE_DIR'
162          );
163
164     // Optional values which need to be defined.
165     // These are not defined in config-default.ini and empty if not defined.
166     $_IC_OPTIONAL_VALUE = array
167         (
168          'DEBUG', 'TEMP_DIR', 'DEFAULT_LANGUAGE',
169          'LDAP_AUTH_HOST','LDAP_SET_OPTION','LDAP_BASE_DN', 'LDAP_AUTH_USER',
170          'LDAP_AUTH_PASSWORD','LDAP_SEARCH_FIELD','LDAP_OU_GROUP','LDAP_OU_USERS',
171          'AUTH_USER_FILE','DBAUTH_AUTH_DSN',
172          'IMAP_AUTH_HOST', 'POP3_AUTH_HOST',
173          'AUTH_USER_FILE', 'AUTH_GROUP_FILE', 'AUTH_SESS_USER', 'AUTH_SESS_LEVEL',
174          'GOOGLE_LICENSE_KEY','FORTUNE_DIR',
175          'DISABLE_GETIMAGESIZE','DBADMIN_USER','DBADMIN_PASSWD',
176          'SESSION_SAVE_PATH',
177          'TOOLBAR_PAGELINK_PULLDOWN', 'TOOLBAR_TEMPLATE_PULLDOWN', 'TOOLBAR_IMAGE_PULLDOWN',
178          'EXTERNAL_LINK_TARGET', 'ACCESS_LOG_SQL', 'USE_EXTERNAL_HTML2PDF',
179          'LOGIN_LOG','LDAP_SEARCH_FILTER'
180          );
181
182     // List of all valid config options to be define()d which take booleans.
183     $_IC_VALID_BOOL = array
184         ('ENABLE_USER_NEW', 'ENABLE_PAGEPERM', 'ENABLE_EDIT_TOOLBAR', 'JS_SEARCHREPLACE',
185          'ENABLE_XHTML_XML', 'ENABLE_DOUBLECLICKEDIT', 'ENABLE_LIVESEARCH', 'ENABLE_ACDROPDOWN',
186          'USECACHE', 'WIKIDB_NOCACHE_MARKUP',
187          'ENABLE_REVERSE_DNS', 'ENCRYPTED_PASSWD', 'ZIPDUMP_AUTH',
188          'ENABLE_RAW_HTML', 'ENABLE_RAW_HTML_LOCKEDONLY', 'ENABLE_RAW_HTML_SAFE',
189          'STRICT_MAILABLE_PAGEDUMPS', 'COMPRESS_OUTPUT',
190          'ALLOW_ANON_USER', 'ALLOW_ANON_EDIT',
191          'ALLOW_BOGO_LOGIN', 'ALLOW_USER_PASSWORDS',
192          'AUTH_USER_FILE_STORABLE', 'ALLOW_HTTP_AUTH_LOGIN',
193          'ALLOW_USER_LOGIN', 'ALLOW_LDAP_LOGIN', 'ALLOW_IMAP_LOGIN',
194          'WARN_NONPUBLIC_INTERWIKIMAP', 'USE_PATH_INFO',
195          'DISABLE_HTTP_REDIRECT',
196          'PLUGIN_CACHED_USECACHE', 'PLUGIN_CACHED_FORCE_SYNCMAP',
197          'BLOG_DEFAULT_EMPTY_PREFIX', 'DATABASE_PERSISTENT',
198          'FUSIONFORGE',
199          'ENABLE_DISCUSSION_LINK', 'ENABLE_CAPTCHA',
200          'ENABLE_WYSIWYG', 'WYSIWYG_DEFAULT_PAGETYPE_HTML',
201          'DISABLE_MARKUP_WIKIWORD', 'ENABLE_MARKUP_COLOR', 'ENABLE_MARKUP_TEMPLATE',
202          'ENABLE_MARKUP_MEDIAWIKI_TABLE',
203          'ENABLE_MARKUP_DIVSPAN', 'USE_BYTEA', 'UPLOAD_USERDIR', 'DISABLE_UNITS',
204          'ENABLE_SEARCHHIGHLIGHT', 'DISABLE_UPLOAD_ONLY_ALLOWED_EXTENSIONS',
205          'ENABLE_AUTH_OPENID', 'INSECURE_ACTIONS_LOCALHOST_ONLY',
206          'ENABLE_MAILNOTIFY', 'ENABLE_RECENTCHANGESBOX', 'ENABLE_PAGE_PUBLIC',
207          'ENABLE_AJAX', 'ENABLE_EXTERNAL_PAGES',
208          'READONLY'
209          );
210
211     $rs = @parse_ini_file($file);
212     $rsdef = @parse_ini_file(dirname(__FILE__)."/../config/config-default.ini");
213     foreach ($rsdef as $k => $v) {
214         if (defined($k)) {
215             $rs[$k] = constant($k);
216         } elseif (!isset($rs[$k])) {
217             $rs[$k] = $v;
218         }
219     }
220     unset($k); unset($v);
221
222     foreach ($_IC_VALID_VALUE as $item) {
223         if (defined($item)) {
224             unset($rs[$item]);
225             continue;
226         }
227         if (array_key_exists($item, $rs)) {
228             _check_int_constant($rs[$item]);
229             define($item, $rs[$item]);
230             unset($rs[$item]);
231         //} elseif (array_key_exists($item, $rsdef)) {
232         //    define($item, $rsdef[$item]);
233         // calculate them later or not at all:
234         } elseif (in_array($item,
235                            array('DATABASE_PREFIX', 'SERVER_NAME', 'SERVER_PORT',
236                                  'SCRIPT_NAME', 'DATA_PATH', 'PHPWIKI_DIR', 'VIRTUAL_PATH',
237                                  'LDAP_AUTH_HOST','IMAP_AUTH_HOST','POP3_AUTH_HOST',
238                                  'PLUGIN_CACHED_CACHE_DIR','EXTERNAL_HTML2PDF_PAGELIST')))
239         {
240             ;
241         } elseif (!defined("_PHPWIKI_INSTALL_RUNNING")) {
242             trigger_error(sprintf("missing config setting for %s",$item));
243         }
244     }
245     unset($item);
246
247     // Boolean options are slightly special - if they're set to any of
248     // '', 'false', '0', or 'no' (all case-insensitive) then the value will
249     // be a boolean false, otherwise if there is anything set it'll
250     // be true.
251     foreach ($_IC_VALID_BOOL as $item) {
252         if (defined($item)) {
253             unset($rs[$item]);
254             continue;
255         }
256         if (array_key_exists($item, $rs)) {
257             $val = $rs[$item];
258         //} elseif (array_key_exists($item, $rsdef)) {
259         //    $val = $rsdef[$item];
260         } else {
261             $val = false;
262             //trigger_error(sprintf("missing boolean config setting for %s",$item));
263         }
264
265         // calculate them later: old or dynamic constants
266         if (!array_key_exists($item, $rs) and
267             in_array($item, array('USE_PATH_INFO', 'USE_DB_SESSION',
268                                   'ALLOW_HTTP_AUTH_LOGIN', 'ALLOW_LDAP_LOGIN',
269                                   'ALLOW_IMAP_LOGIN', 'ALLOW_USER_LOGIN',
270                                   'REQUIRE_SIGNIN_BEFORE_EDIT',
271                                   'WIKIDB_NOCACHE_MARKUP',
272                                   'COMPRESS_OUTPUT', 'USE_BYTEA', 'READONLY',
273                                   )))
274         {
275             ;
276         }
277         elseif (!$val) {
278             define($item, false);
279         }
280         elseif (strtolower($val) == 'false' ||
281                 strtolower($val) == 'no' ||
282                 $val == '' ||
283                 $val == false ||
284                 $val == '0') {
285             define($item, false);
286         }
287         else {
288             define($item, true);
289         }
290         unset($rs[$item]);
291     }
292     unset($item);
293
294     // Database
295     global $DBParams;
296     foreach (array('DATABASE_TYPE'     => 'dbtype',
297                'DATABASE_DSN'      => 'dsn',
298                'DATABASE_SESSION_TABLE' => 'db_session_table',
299                'DATABASE_DBA_HANDLER'   => 'dba_handler',
300                    'DATABASE_DIRECTORY' => 'directory',
301                    'DATABASE_TIMEOUT'   => 'timeout',
302                    'DATABASE_PREFIX'    => 'prefix')
303              as $item => $k)
304     {
305         if (defined($item)) {
306             $DBParams[$k] = constant($item);
307             unset($rs[$item]);
308         } elseif (array_key_exists($item, $rs)) {
309             $DBParams[$k] = $rs[$item];
310             define($item, $rs[$item]);
311             unset($rs[$item]);
312         } elseif (array_key_exists($item, $rsdef)) {
313             $DBParams[$k] = $rsdef[$item];
314             define($item, $rsdef[$item]);
315             unset($rsdef[$item]);
316         }
317     }
318     $valid_database_types = array('SQL','ADODB','PDO','dba','file','flatfile','cvs','cvsclient');
319     if (!in_array(DATABASE_TYPE, $valid_database_types))
320         trigger_error(sprintf("Invalid DATABASE_TYPE=%s. Choose one of %s",
321                               DATABASE_TYPE, join(",", $valid_database_types)),
322                       E_USER_ERROR);
323     unset($valid_database_types);
324     if (DATABASE_TYPE == 'PDO') {
325         if (!check_php_version(5))
326             trigger_error("Invalid DATABASE_TYPE=PDO. PDO requires at least php-5.0!",
327                           E_USER_ERROR);
328         // try to load it dynamically (unix only)
329         if (!loadPhpExtension("pdo")) {
330             echo $GLOBALS['php_errormsg'], "<br>\n";
331             trigger_error(sprintf("dl() problem: Required extension '%s' could not be loaded!",
332                                   "pdo"),
333                           E_USER_ERROR);
334         }
335     }
336     // Detect readonly database, e.g. system mounted read-only for maintenance
337     // via dbh->readonly later. Unfortunately not possible as constant.
338
339     // USE_DB_SESSION default logic:
340     if (!defined('USE_DB_SESSION')) {
341         if ($DBParams['db_session_table']
342             and in_array($DBParams['dbtype'], array('SQL','ADODB','PDO','dba'))) {
343             define('USE_DB_SESSION', true);
344         } else {
345             define('USE_DB_SESSION', false);
346         }
347     }
348     unset($item); unset($k);
349
350     // Expiry stuff
351     global $ExpireParams;
352     foreach (array('major','minor','author') as $major) {
353         foreach (array('max_age','min_age','min_keep','keep','max_keep') as $max) {
354             $item = strtoupper($major) . '_'. strtoupper($max);
355             if (defined($item)) $val = constant($item);
356             elseif (array_key_exists($item, $rs))
357                 $val = $rs[$item];
358             elseif (array_key_exists($item, $rsdef))
359                 $val = $rsdef[$item];
360             if (!isset($ExpireParams[$major]))
361                 $ExpireParams[$major] = array();
362             $ExpireParams[$major][$max] = $val;
363             unset($rs[$item]);
364         }
365     }
366     unset($item); unset($major); unset($max);
367
368     // User authentication
369     if (!isset($GLOBALS['USER_AUTH_ORDER'])) {
370         if (isset($rs['USER_AUTH_ORDER']))
371             $GLOBALS['USER_AUTH_ORDER'] = preg_split('/\s*:\s*/',
372                                                      $rs['USER_AUTH_ORDER']);
373         else
374             $GLOBALS['USER_AUTH_ORDER'] = array("PersonalPage");
375     }
376
377     // Now it's the external DB authentication stuff's turn
378     if (in_array('Db', $GLOBALS['USER_AUTH_ORDER']) && empty($rs['DBAUTH_AUTH_DSN'])) {
379         $rs['DBAUTH_AUTH_DSN'] = $DBParams['dsn'];
380     }
381
382     global $DBAuthParams;
383     $DBAP_MAP = array('DBAUTH_AUTH_DSN' => 'auth_dsn',
384                       'DBAUTH_AUTH_CHECK' => 'auth_check',
385                       'DBAUTH_AUTH_USER_EXISTS' => 'auth_user_exists',
386                       'DBAUTH_AUTH_CRYPT_METHOD' => 'auth_crypt_method',
387                       'DBAUTH_AUTH_UPDATE' => 'auth_update',
388                       'DBAUTH_AUTH_CREATE' => 'auth_create',
389                       'DBAUTH_PREF_SELECT' => 'pref_select',
390                       'DBAUTH_PREF_INSERT' => 'pref_insert',
391                       'DBAUTH_PREF_UPDATE' => 'pref_update',
392                       'DBAUTH_IS_MEMBER' => 'is_member',
393                       'DBAUTH_GROUP_MEMBERS' => 'group_members',
394                       'DBAUTH_USER_GROUPS' => 'user_groups'
395                       );
396     foreach ($DBAP_MAP as $rskey => $apkey) {
397         if (defined($rskey)) {
398             $DBAuthParams[$apkey] = constant($rskey);
399         } elseif (isset($rs[$rskey])) {
400             $DBAuthParams[$apkey] = $rs[$rskey];
401             define($rskey, $rs[$rskey]);
402         } elseif (isset($rsdef[$rskey])) {
403             $DBAuthParams[$apkey] = $rsdef[$rskey];
404             define($rskey, $rsdef[$rskey]);
405         }
406         unset($rs[$rskey]);
407     }
408     unset($rskey); unset($apkey);
409
410     // TODO: Currently unsupported on non-SQL. Nice to have for RhNavPlugin
411     // CHECKME: PDO
412     if (!defined('ACCESS_LOG_SQL')) {
413         if (array_key_exists('ACCESS_LOG_SQL', $rs)) {
414             // WikiDB_backend::isSql() not yet loaded
415             if (!in_array(DATABASE_TYPE, array('SQL','ADODB','PDO'))) {
416                 // override false config setting on no SQL WikiDB database.
417                 define('ACCESS_LOG_SQL', 0);
418             }
419         // SQL defaults to ACCESS_LOG_SQL = 2
420         } else {
421             define('ACCESS_LOG_SQL',
422             in_array(DATABASE_TYPE, array('SQL','ADODB','PDO')) ? 2 : 0);
423         }
424     }
425
426     global $PLUGIN_MARKUP_MAP;
427     $PLUGIN_MARKUP_MAP = array();
428     if (defined('PLUGIN_MARKUP_MAP') and trim(PLUGIN_MARKUP_MAP) != "") {
429     $_map = preg_split('/\s+/', PLUGIN_MARKUP_MAP);
430     foreach ($_map as $v) {
431         list($xml,$plugin) = explode(':', $v);
432         if (!empty($xml) and !empty($plugin))
433             $PLUGIN_MARKUP_MAP[$xml] = $plugin;
434     }
435     unset($_map); unset($xml); unset($plugin); unset($v);
436     }
437
438     if (empty($rs['TEMP_DIR'])) {
439     $rs['TEMP_DIR'] = "/tmp";
440     if (getenv("TEMP"))
441         $rs['TEMP_DIR'] = getenv("TEMP");
442     }
443     // optional values will be set to '' to simplify the logic.
444     foreach ($_IC_OPTIONAL_VALUE as $item) {
445         if (defined($item)) {
446             unset($rs[$item]);
447             continue;
448         }
449         if (array_key_exists($item, $rs)) {
450         _check_int_constant($rs[$item]);
451             define($item, $rs[$item]);
452             unset($rs[$item]);
453         } else
454             define($item, '');
455     }
456
457     if (USE_EXTERNAL_HTML2PDF) {
458     $item = 'EXTERNAL_HTML2PDF_PAGELIST';
459         if (defined($item)) {
460             unset($rs[$item]);
461         } elseif (array_key_exists($item, $rs)) {
462             define($item, $rs[$item]);
463             unset($rs[$item]);
464         } elseif (array_key_exists($item, $rsdef)) {
465             define($item, $rsdef[$item]);
466     }
467     }
468     unset($item);
469
470     // LDAP bind options
471     global $LDAP_SET_OPTION;
472     if (defined('LDAP_SET_OPTION') and LDAP_SET_OPTION) {
473         $optlist = preg_split('/\s*:\s*/', LDAP_SET_OPTION);
474         foreach ($optlist as $opt) {
475             $bits = preg_split('/\s*=\s*/', $opt, 2);
476             if (count($bits) == 2) {
477                 if (is_string($bits[0]) and defined($bits[0]))
478                     $bits[0] = constant($bits[0]);
479                 $LDAP_SET_OPTION[$bits[0]] = $bits[1];
480             }
481             else {
482                 // Possibly throw some sort of error?
483             }
484         }
485         unset($opt); unset($bits);
486     }
487
488     // Default Wiki pages to force loading from pgsrc
489     global $GenericPages;
490     $GenericPages = preg_split('/\s*:\s*/', @$rs['DEFAULT_WIKI_PAGES']);
491
492     // Wiki name regexp:  Should be a define(), but might needed to be changed at runtime
493     // (different LC_CHAR need different posix classes)
494     global $WikiNameRegexp;
495     $WikiNameRegexp = constant('WIKI_NAME_REGEXP');
496     if (!trim($WikiNameRegexp))
497        $WikiNameRegexp = '(?<![[:alnum:]])(?:[[:upper:]][[:lower:]]+){2,}(?![[:alnum:]])';
498
499     // Got rid of global $KeywordLinkRegexp by using a TextSearchQuery instead
500     // of "Category:Topic"
501     if (!isset($rs['KEYWORDS'])) $rs['KEYWORDS'] = @$rsdef['KEYWORDS'];
502     if (!isset($rs['KEYWORDS'])) $rs['KEYWORDS'] = "Category* OR Topic*";
503     if ($rs['KEYWORDS'] == 'Category:Topic') $rs['KEYWORDS'] = "Category* OR Topic*";
504     if (!defined('KEYWORDS')) define('KEYWORDS', $rs['KEYWORDS']);
505     //if (empty($keywords)) $keywords = array("Category","Topic");
506     //$KeywordLinkRegexp = '(?<=' . implode('|^', $keywords) . ')[[:upper:]].*$';
507
508     // TODO: can this be a constant?
509     global $DisabledActions;
510     if (!array_key_exists('DISABLED_ACTIONS', $rs)
511         and array_key_exists('DISABLED_ACTIONS', $rsdef))
512         $rs['DISABLED_ACTIONS'] = @$rsdef['DISABLED_ACTIONS'];
513     if (array_key_exists('DISABLED_ACTIONS', $rs))
514         $DisabledActions = preg_split('/\s*:\s*/', $rs['DISABLED_ACTIONS']);
515
516     global $PLUGIN_CACHED_IMGTYPES;
517     $PLUGIN_CACHED_IMGTYPES = preg_split('/\s*[|:]\s*/', PLUGIN_CACHED_IMGTYPES);
518
519     if (!defined('PLUGIN_CACHED_CACHE_DIR')) {
520         if (empty($rs['PLUGIN_CACHED_CACHE_DIR']) and !empty($rsdef['PLUGIN_CACHED_CACHE_DIR']))
521             $rs['PLUGIN_CACHED_CACHE_DIR'] = $rsdef['PLUGIN_CACHED_CACHE_DIR'];
522         if (empty($rs['PLUGIN_CACHED_CACHE_DIR'])) {
523             if (!empty($rs['INCLUDE_PATH'])) {
524                 @ini_set('include_path', $rs['INCLUDE_PATH']);
525                 $GLOBALS['INCLUDE_PATH'] = $rs['INCLUDE_PATH'];
526             }
527             $rs['PLUGIN_CACHED_CACHE_DIR'] = TEMP_DIR . '/cache';
528             if (!FindFile($rs['PLUGIN_CACHED_CACHE_DIR'], 1)) { // [29ms]
529                 FindFile(TEMP_DIR, false, 1);            // TEMP must exist!
530                 mkdir($rs['PLUGIN_CACHED_CACHE_DIR'], 0777);
531             }
532             // will throw an error if not exists.
533             define('PLUGIN_CACHED_CACHE_DIR', FindFile($rs['PLUGIN_CACHED_CACHE_DIR'],false,1));
534         } else {
535             define('PLUGIN_CACHED_CACHE_DIR', $rs['PLUGIN_CACHED_CACHE_DIR']);
536             // will throw an error if not exists.
537             FindFile(PLUGIN_CACHED_CACHE_DIR);
538         }
539     }
540
541     // process the rest of the config.ini settings:
542     foreach ($rs as $item => $v) {
543         if (defined($item)) {
544             continue;
545         } else {
546         _check_int_constant($v);
547             define($item, $v);
548         }
549     }
550     unset($item); unset($v);
551
552     unset($rs);
553     unset($rsdef);
554
555     fixup_static_configs($file); //[1ms]
556     // Dump all globals and constants
557     // The question is if reading this is faster then doing IniConfig() + fixup_static_configs()
558     if (is_writable($dump)) {
559         save_dump($dump);
560     }
561     // store locale[] in config.php? This is too problematic.
562     fixup_dynamic_configs($file); // [100ms]
563 }
564
565 function _ignore_unknown_charset_warning(&$error) {
566     //htmlspecialchars(): charset `iso-8859-2' not supported, assuming iso-8859-1
567     if (preg_match('/^htmlspecialchars\(\): charset \`.+\' not supported, assuming iso-8859-1/',
568                    $error->errstr)) {
569         $error->errno = 0;
570         return true;  // Ignore error
571     }
572     return false;
573 }
574
575 // moved from lib/config.php [1ms]
576 function fixup_static_configs($file) {
577     global $FieldSeparator, $charset, $WikiNameRegexp, $AllActionPages;
578     global $HTTP_SERVER_VARS, $DBParams, $LANG, $ErrorManager;
579     // init FileFinder to add proper include paths
580     FindFile("lib/interwiki.map",true);
581
582     // "\x80"-"\x9f" (and "\x00" - "\x1f") are non-printing control
583     // chars in iso-8859-*
584     // $FieldSeparator = "\263"; // this is a superscript 3 in ISO-8859-1.
585     // $FieldSeparator = "\xFF"; // this byte should never appear in utf-8
586     // Get rid of constant. pref is dynamic and language specific
587     $charset = CHARSET;
588     // Disabled: Let the admin decide which charset.
589     //if (isset($LANG) and in_array($LANG,array('zh')))
590     //    $charset = 'utf-8';
591     if (strtolower($charset) == 'utf-8')
592         $FieldSeparator = "\xFF";
593     else
594         $FieldSeparator = "\x81";
595
596     // Some exotic charsets are not supported by htmlspecialchars, which just prints an E_WARNING.
597     // Even on simple 8bit charsets, where just <>& need to be replaced. For iso-8859-[2-4] e.g.
598     // See <php-src>/ext/standard/html.c
599     // For performance reasons we require a magic constant to ignore this warning.
600     if (defined('IGNORE_CHARSET_NOT_SUPPORTED_WARNING')
601         and IGNORE_CHARSET_NOT_SUPPORTED_WARNING)
602     {
603         $ErrorManager->pushErrorHandler
604             (new WikiFunctionCb('_ignore_unknown_charset_warning'));
605     }
606
607     // All pages containing plugins of the same name as the filename
608     $ActionPages = explode(':',
609       'AllPages:AllUsers:AppendText:AuthorHistory:'
610       .'BackLinks:'
611       .'CreatePage:'
612       .'FullTextSearch:FuzzyPages:'
613       .'LikePages:LinkDatabase:LinkSearch:ListRelations:'
614       .'ModeratedPage:MostPopular:'
615       .'NewPagesPerUser:'
616       .'OrphanedPages:'
617       .'PageDump:PageHistory:PageInfo:PluginManager:'
618       .'RateIt:' // RateIt works only in wikilens derived themes
619       .'RandomPage:RecentChanges:RelatedChanges:RecentEdits:'
620       .'SearchHighlight:SemanticRelations:SemanticSearch:SystemInfo:'
621       .'TitleSearch:'
622       .'UpLoad:UserPreferences:'
623       .'UserRatings:' // UserRatings works only in wikilens derived themes
624       .'WantedPages:WatchPage:WhoIsOnline:WikiAdminSelect');
625
626     // The FUSIONFORGE theme omits them
627     if (!FUSIONFORGE) {
628        // Add some some action pages depending on configuration
629        if (DEBUG) {
630           $ActionPages[] = 'DebugInfo';
631           $ActionPages[] = 'EditMetaData';
632           $ActionPages[] = 'SpellCheck'; // SpellCheck does not work
633        }
634        $ActionPages[] = 'BlogArchives';
635        $ActionPages[] = 'BlogJournal';
636        $ActionPages[] = 'InterWikiSearch';
637        $ActionPages[] = 'LdapSearch';
638        $ActionPages[] = 'PasswordReset';
639        $ActionPages[] = 'RecentComments';
640        $ActionPages[] = 'TranslateText';
641        $ActionPages[] = 'UriResolver';
642        $ActionPages[] = 'WikiBlog';
643     }
644
645     global $AllAllowedPlugins;
646     $AllAllowedPlugins = $ActionPages;
647     // Add plugins that have no corresponding action page
648     $AllAllowedPlugins[] = 'AsciiSVG';
649     $AllAllowedPlugins[] = 'AtomFeed';
650     $AllAllowedPlugins[] = 'BoxRight';
651     $AllAllowedPlugins[] = 'CalendarList';
652     $AllAllowedPlugins[] = 'Calendar';
653     $AllAllowedPlugins[] = 'CategoryPage';
654     $AllAllowedPlugins[] = 'Chart';
655     $AllAllowedPlugins[] = 'Comment';
656     $AllAllowedPlugins[] = 'CreateBib';
657     $AllAllowedPlugins[] = 'CreateToc';
658     $AllAllowedPlugins[] = 'CurrentTime';
659     $AllAllowedPlugins[] = 'DeadEndPages';
660     $AllAllowedPlugins[] = 'Diff';
661     $AllAllowedPlugins[] = 'DynamicIncludePage';
662     $AllAllowedPlugins[] = 'ExternalSearch';
663     $AllAllowedPlugins[] = 'FacebookLike';
664     $AllAllowedPlugins[] = 'FileInfo';
665     $AllAllowedPlugins[] = 'GoogleMaps';
666     $AllAllowedPlugins[] = 'GooglePlugin';
667     $AllAllowedPlugins[] = 'GoTo';
668     $AllAllowedPlugins[] = 'HelloWorld';
669     $AllAllowedPlugins[] = 'IncludePage';
670     $AllAllowedPlugins[] = 'IncludePages';
671     $AllAllowedPlugins[] = 'IncludeSiteMap';
672     $AllAllowedPlugins[] = 'IncludeTree';
673     $AllAllowedPlugins[] = 'ListPages';
674     $AllAllowedPlugins[] = 'ListSubpages';
675     $AllAllowedPlugins[] = 'MediawikiTable';
676     $AllAllowedPlugins[] = 'NoCache';
677     $AllAllowedPlugins[] = 'OldStyleTable';
678     $AllAllowedPlugins[] = 'PageGroup';
679     $AllAllowedPlugins[] = 'PageTrail';
680     $AllAllowedPlugins[] = 'PhotoAlbum';
681     $AllAllowedPlugins[] = 'PhpHighlight';
682     $AllAllowedPlugins[] = 'PopularTags';
683     $AllAllowedPlugins[] = 'PopUp';
684     $AllAllowedPlugins[] = 'PrevNext';
685     $AllAllowedPlugins[] = 'Processing';
686     $AllAllowedPlugins[] = 'RawHtml';
687     $AllAllowedPlugins[] = 'RecentChangesCached';
688     $AllAllowedPlugins[] = 'RecentReferrers';
689     $AllAllowedPlugins[] = 'RedirectTo';
690     $AllAllowedPlugins[] = 'RichTable';
691     $AllAllowedPlugins[] = 'RssFeed';
692     $AllAllowedPlugins[] = 'SemanticSearchAdvanced';
693     $AllAllowedPlugins[] = 'SiteMap';
694     $AllAllowedPlugins[] = 'SyncWiki';
695     $AllAllowedPlugins[] = 'SyntaxHighlighter';
696     $AllAllowedPlugins[] = 'Template';
697     $AllAllowedPlugins[] = 'Transclude';
698     $AllAllowedPlugins[] = 'UnfoldSubpages';
699     $AllAllowedPlugins[] = 'Video';
700     $AllAllowedPlugins[] = 'WikiAdminChown';
701     $AllAllowedPlugins[] = 'WikiAdminPurge';
702     $AllAllowedPlugins[] = 'WikiAdminRemove';
703     $AllAllowedPlugins[] = 'WikiAdminRename';
704     $AllAllowedPlugins[] = 'WikiAdminSearchReplace';
705     $AllAllowedPlugins[] = 'WikiAdminSetAcl';
706     $AllAllowedPlugins[] = 'WikiAdminSetAclSimple';
707     $AllAllowedPlugins[] = 'WikiAdminUtils';
708     $AllAllowedPlugins[] = 'WikicreoleTable';
709     $AllAllowedPlugins[] = 'WikiForm';
710     $AllAllowedPlugins[] = 'WikiFormRich';
711     $AllAllowedPlugins[] = 'WikiPoll';
712     $AllAllowedPlugins[] = 'YouTube';
713
714     // The FUSIONFORGE theme omits them
715     if (!FUSIONFORGE) {
716         $AllAllowedPlugins[] = 'AddComment';
717         $AllAllowedPlugins[] = 'AnalyseAccessLogSql';
718         $AllAllowedPlugins[] = 'AsciiMath';
719         $AllAllowedPlugins[] = '_AuthInfo';
720         $AllAllowedPlugins[] = '_BackendInfo';
721         $AllAllowedPlugins[] = 'CacheTest';
722         $AllAllowedPlugins[] = 'CategoryPage';
723         $AllAllowedPlugins[] = 'FoafViewer';
724         $AllAllowedPlugins[] = 'FrameInclude';
725         $AllAllowedPlugins[] = 'GraphViz';
726         $AllAllowedPlugins[] = '_GroupInfo';
727         $AllAllowedPlugins[] = 'HtmlConverter';
728         $AllAllowedPlugins[] = 'Imdb';
729         $AllAllowedPlugins[] = 'JabberPresence';
730         $AllAllowedPlugins[] = 'ListPages';
731         $AllAllowedPlugins[] = 'PhpWeather';
732         $AllAllowedPlugins[] = 'Ploticus';
733         $AllAllowedPlugins[] = 'PopularNearby';
734         $AllAllowedPlugins[] = 'PreferenceApp';
735         $AllAllowedPlugins[] = '_PreferencesInfo';
736         $AllAllowedPlugins[] = '_Retransform';
737         $AllAllowedPlugins[] = 'SqlResult';
738         $AllAllowedPlugins[] = 'TeX2png';
739         $AllAllowedPlugins[] = 'text2png';
740         $AllAllowedPlugins[] = 'TexToPng';
741         $AllAllowedPlugins[] = 'VisualWiki';
742         $AllAllowedPlugins[] = 'WantedPagesOld';
743         $AllAllowedPlugins[] = 'WikiAdminChmod';
744         $AllAllowedPlugins[] = 'WikiAdminMarkup';
745         $AllAllowedPlugins[] = 'WikiForum';
746         $AllAllowedPlugins[] = '_WikiTranslation';
747     }
748
749     // Used by SetupWiki to pull in required pages, if not translated, then in English.
750     // Also used by _WikiTranslation. Really important are only those which return pagelists
751     // or contain basic functionality.
752     $AllActionPages = $ActionPages;
753     $AllActionPages[] = 'AllPagesCreatedByMe';
754     $AllActionPages[] = 'AllPagesLastEditedByMe';
755     $AllActionPages[] = 'AllPagesOwnedByMe';
756     $AllActionPages[] = 'AllPagesByAcl';
757     $AllActionPages[] = 'AllUserPages';
758     $AllActionPages[] = 'FullRecentChanges';
759     $AllActionPages[] = 'LeastPopular';
760     $AllActionPages[] = 'LockedPages';
761     $AllActionPages[] = 'MyRatings'; // MyRatings works only in wikilens-derived themes
762     $AllActionPages[] = 'MyRecentEdits';
763     $AllActionPages[] = 'MyRecentChanges';
764     $AllActionPages[] = 'PhpWikiAdministration';
765     $AllActionPages[] = 'PhpWikiAdministration/Chown';
766     $AllActionPages[] = 'PhpWikiAdministration/Purge';
767     $AllActionPages[] = 'PhpWikiAdministration/Remove';
768     $AllActionPages[] = 'PhpWikiAdministration/Rename';
769     $AllActionPages[] = 'PhpWikiAdministration/SearchReplace';
770     $AllActionPages[] = 'PhpWikiAdministration/SetAcl';
771     $AllActionPages[] = 'PhpWikiAdministration/SetAclSimple';
772     $AllActionPages[] = 'RecentChangesMyPages';
773     $AllActionPages[] = 'RecentEdits';
774     $AllActionPages[] = 'RecentNewPages';
775     $AllActionPages[] = 'SetGlobalAccessRights';
776     $AllActionPages[] = 'SetGlobalAccessRightsSimple';
777     $AllActionPages[] = 'UserContribs';
778
779     // The FUSIONFORGE theme omits them
780     if (!FUSIONFORGE) {
781        // Add some some action pages depending on configuration
782        if (DEBUG) {
783           $AllActionPages[] = 'PhpWikiAdministration/Chmod';
784        }
785        $AllActionPages[] = 'PhpWikiAdministration/Markup';
786     }
787
788     if (FUSIONFORGE) {
789        if (ENABLE_EXTERNAL_PAGES) {
790           $AllAllowedPlugins[] = 'WikiAdminSetExternal';
791           $AllActionPages[] = 'ExternalPages';
792        }
793     }
794
795     // If user has not defined PHPWIKI_DIR, and we need it
796     if (!defined('PHPWIKI_DIR') and !file_exists("themes/default")) {
797         $themes_dir = FindFile("themes");
798         define('PHPWIKI_DIR', dirname($themes_dir));
799     }
800
801     // If user has not defined DATA_PATH, we want to use relative URLs.
802     if (!defined('DATA_PATH')) {
803         // fix similar to the one suggested by jkalmbach for
804         // installations in the webrootdir, like "http://phpwiki.org/HomePage"
805         if (!defined('SCRIPT_NAME'))
806             define('SCRIPT_NAME', deduce_script_name());
807         $temp = dirname(SCRIPT_NAME);
808         if ( ($temp == '/') || ($temp == '\\') )
809             $temp = '';
810         define('DATA_PATH', $temp);
811         /*
812         if (USE_PATH_INFO)
813             define('DATA_PATH', '..');
814         */
815     }
816
817     //////////////////////////////////////////////////////////////////
818     // Select database
819     //
820     if (empty($DBParams['dbtype']))
821         $DBParams['dbtype'] = 'dba';
822
823     if (!defined('THEME'))
824         define('THEME', 'default');
825
826     /*$configurator_link = HTML(HTML::br(), "=>",
827                               HTML::a(array('href'=>DATA_PATH."/configurator.php"),
828                                       _("Configurator")));*/
829     // check whether the crypt() function is needed and present
830     if (defined('ENCRYPTED_PASSWD') && !function_exists('crypt')) {
831         $error = sprintf("Encrypted passwords cannot be used: %s.",
832                          "'function crypt()' not available in this version of php");
833         trigger_error($error, E_USER_WARNING);
834         if (!preg_match("/config\-dist\.ini$/", $file)) { // protect against recursion
835             include_once(dirname(__FILE__)."/install.php");
836             run_install("_part1");
837             exit();
838         }
839     }
840
841     // Basic configurator validation
842     if (!defined('ADMIN_USER') or ADMIN_USER == '') {
843         $error = sprintf("%s may not be empty. Please update your configuration.",
844                     "ADMIN_USER");
845         // protect against recursion
846         if (!preg_match("/config\-(dist|default)\.ini$/", $file)
847             and !defined("_PHPWIKI_INSTALL_RUNNING"))
848         {
849             include_once(dirname(__FILE__)."/install.php");
850             run_install("_part1");
851             trigger_error($error, E_USER_ERROR);
852             exit();
853         } elseif ($HTTP_SERVER_VARS["REQUEST_METHOD"] == "POST") {
854             $GLOBALS['HTTP_GET_VARS']['show'] = '_part1';
855             trigger_error($error, E_USER_WARNING);
856         }
857     }
858     if (!defined('ADMIN_PASSWD') or ADMIN_PASSWD == '') {
859         $error = sprintf("%s may not be empty. Please update your configuration.",
860                     "ADMIN_PASSWD");
861         // protect against recursion
862         if (!preg_match("/config\-(dist|default)\.ini$/", $file)
863            and !defined("_PHPWIKI_INSTALL_RUNNING"))
864         {
865             include_once(dirname(__FILE__)."/install.php");
866             run_install("_part1");
867             trigger_error($error, E_USER_ERROR);
868             exit();
869         } elseif ($HTTP_SERVER_VARS["REQUEST_METHOD"] == "POST") {
870             $GLOBALS['HTTP_GET_VARS']['show'] = '_part1';
871             trigger_error($error, E_USER_WARNING);
872         }
873     }
874
875     if (defined('USE_DB_SESSION') and USE_DB_SESSION) {
876         if (! $DBParams['db_session_table'] ) {
877             $DBParams['db_session_table'] = @$DBParams['prefix'] . 'session';
878             trigger_error(sprintf("DATABASE_SESSION_TABLE configuration set to %s.",
879                                   $DBParams['db_session_table']),
880                           E_USER_ERROR);
881         }
882     }
883     // legacy:
884     if (!defined('ENABLE_USER_NEW')) define('ENABLE_USER_NEW',true);
885     if (!defined('ALLOW_USER_LOGIN'))
886         define('ALLOW_USER_LOGIN', defined('ALLOW_USER_PASSWORDS') && ALLOW_USER_PASSWORDS);
887     if (!defined('ALLOW_ANON_USER')) define('ALLOW_ANON_USER', true);
888     if (!defined('ALLOW_ANON_EDIT')) define('ALLOW_ANON_EDIT', false);
889     if (!defined('REQUIRE_SIGNIN_BEFORE_EDIT')) define('REQUIRE_SIGNIN_BEFORE_EDIT', ! ALLOW_ANON_EDIT);
890     if (!defined('ALLOW_BOGO_LOGIN')) define('ALLOW_BOGO_LOGIN', true);
891     if (!ENABLE_USER_NEW) {
892       if (!defined('ALLOW_HTTP_AUTH_LOGIN'))
893           define('ALLOW_HTTP_AUTH_LOGIN', false);
894       if (!defined('ALLOW_LDAP_LOGIN'))
895           define('ALLOW_LDAP_LOGIN', function_exists('ldap_connect') and defined('LDAP_AUTH_HOST'));
896       if (!defined('ALLOW_IMAP_LOGIN'))
897           define('ALLOW_IMAP_LOGIN', function_exists('imap_open') and defined('IMAP_AUTH_HOST'));
898     }
899
900     if (ALLOW_USER_LOGIN and !empty($DBAuthParams) and empty($DBAuthParams['auth_dsn'])) {
901         if (isset($DBParams['dsn']))
902             $DBAuthParams['auth_dsn'] = $DBParams['dsn'];
903     }
904 }
905
906 /**
907  * Define constants which are client or request specific and should not be dumped statically.
908  * Such as the language, and the virtual and server paths, which might be overridden
909  * by startup scripts for wiki farms.
910  */
911 function fixup_dynamic_configs($file) {
912     global $WikiNameRegexp;
913     global $HTTP_SERVER_VARS, $DBParams, $LANG;
914
915     if (defined('INCLUDE_PATH') and INCLUDE_PATH) {
916         @ini_set('include_path', INCLUDE_PATH);
917         $GLOBALS['INCLUDE_PATH'] = INCLUDE_PATH;
918     }
919     if (defined('SESSION_SAVE_PATH') and SESSION_SAVE_PATH)
920         @ini_set('session.save_path', SESSION_SAVE_PATH);
921     if (!defined('DEFAULT_LANGUAGE'))   // not needed anymore
922         define('DEFAULT_LANGUAGE', ''); // detect from client
923
924     // FusionForge hack
925     if (!FUSIONFORGE) {
926         // Disable update_locale because Zend Debugger crash
927         if(! extension_loaded('Zend Debugger')) {
928             update_locale(isset($LANG) ? $LANG : DEFAULT_LANGUAGE);
929         }
930     }
931
932     if (empty($LANG)) {
933         if (!defined("DEFAULT_LANGUAGE") or !DEFAULT_LANGUAGE) {
934             // TODO: defer this to WikiRequest::initializeLang()
935             $LANG = guessing_lang();
936             guessing_setlocale (LC_ALL,$LANG);
937         }
938         else
939             $LANG = DEFAULT_LANGUAGE;
940     }
941
942     // Set up (possibly fake) gettext()
943     // Todo: this could be moved to fixup_static_configs()
944     // Bug #1381464 with php-5.1.1
945     if (!function_exists ('bindtextdomain')
946         and !function_exists ('gettext')
947         and !function_exists ('_'))
948     {
949         $locale = array();
950
951         function gettext ($text) {
952             global $locale;
953             if (!empty ($locale[$text]))
954                 return $locale[$text];
955             return $text;
956         }
957         function _ ($text) {
958             return gettext($text);
959         }
960     }
961     else {
962         $chback = 0;
963         if ($LANG != 'en') {
964
965             // Working around really weird gettext problems: (4.3.2, 4.3.6 win)
966             // bindtextdomain() in returns the current domain path.
967             // 1. If the script is not index.php but something like "de", on a different path
968             //    then bindtextdomain() fails, but after chdir to the correct path it will work okay.
969             // 2. But the weird error "Undefined variable: bindtextdomain" is generated then.
970             $bindtextdomain_path = FindFile("locale", false, true);
971             if (isWindows())
972                 $bindtextdomain_path = str_replace("/", "\\", $bindtextdomain_path);
973             $bindtextdomain_real = @bindtextdomain("phpwiki", $bindtextdomain_path);
974             if (realpath($bindtextdomain_real) != realpath($bindtextdomain_path)) {
975                 // this will happen with virtual_paths. chdir and try again.
976                 chdir($bindtextdomain_path);
977                 $chback = 1;
978                 $bindtextdomain_real = @bindtextdomain("phpwiki", $bindtextdomain_path);
979             }
980         }
981         // tell gettext not to use unicode. PHP >= 4.2.0. Thanks to Kai Krakow.
982         if (defined('CHARSET') and function_exists('bind_textdomain_codeset'))
983             @bind_textdomain_codeset("phpwiki", CHARSET);
984         if ($LANG != 'en')
985             textdomain("phpwiki");
986         if ($chback) { // change back
987             chdir($bindtextdomain_real . (isWindows() ? "\\.." : "/.."));
988         }
989     }
990
991     // language dependent updates:
992     if (!defined('CATEGORY_GROUP_PAGE'))
993         define('CATEGORY_GROUP_PAGE',_("CategoryGroup"));
994     if (!defined('WIKI_NAME'))
995         define('WIKI_NAME', _("An unnamed PhpWiki"));
996     if (!defined('HOME_PAGE'))
997         define('HOME_PAGE', _("HomePage"));
998
999
1000     //////////////////////////////////////////////////////////////////
1001     // Autodetect URL settings:
1002     //
1003     foreach (array('SERVER_NAME','SERVER_PORT') as $var) {
1004         //FIXME: for CGI without _SERVER
1005         if (!defined($var) and !empty($HTTP_SERVER_VARS[$var]))
1006             // IPV6 fix by matt brown, #1546571
1007             // An IPv6 address must be surrounded by square brackets to form a valid server name.
1008             if ($var == 'SERVER_NAME' &&
1009                     strstr($HTTP_SERVER_VARS[$var], ':')) {
1010                 define($var, '[' . $HTTP_SERVER_VARS[$var] . ']');
1011             } else {
1012                 define($var, $HTTP_SERVER_VARS[$var]);
1013             }
1014     }
1015     if (!defined('SERVER_NAME')) define('SERVER_NAME', '127.0.0.1');
1016     if (!defined('SERVER_PORT')) define('SERVER_PORT', 80);
1017     if (!defined('SERVER_PROTOCOL')) {
1018         if (empty($HTTP_SERVER_VARS['HTTPS']) || $HTTP_SERVER_VARS['HTTPS'] == 'off')
1019             define('SERVER_PROTOCOL', 'http');
1020         else
1021             define('SERVER_PROTOCOL', 'https');
1022     }
1023
1024     if (!defined('SCRIPT_NAME'))
1025         define('SCRIPT_NAME', deduce_script_name());
1026
1027     if (!defined('USE_PATH_INFO')) {
1028         if (isCGI())
1029             define('USE_PATH_INFO', false);
1030         else {
1031             /*
1032              * If SCRIPT_NAME does not look like php source file,
1033              * or user cgi we assume that php is getting run by an
1034              * action handler in /cgi-bin.  In this case,
1035              * I think there is no way to get Apache to pass
1036              * useful PATH_INFO to the php script (PATH_INFO
1037              * is used to the the php interpreter where the
1038              * php script is...)
1039              */
1040             switch (php_sapi_name()) {
1041             case 'apache':
1042             case 'apache2handler':
1043                 define('USE_PATH_INFO', true);
1044                 break;
1045             case 'cgi':
1046             case 'apache2filter':
1047                 define('USE_PATH_INFO', false);
1048                 break;
1049             default:
1050                 define('USE_PATH_INFO', ereg('\.(php3?|cgi)$', SCRIPT_NAME));
1051                 break;
1052             }
1053         }
1054     }
1055
1056     if (SERVER_PORT
1057         && SERVER_PORT != (SERVER_PROTOCOL == 'https' ? 443 : 80)) {
1058         define('SERVER_URL',
1059                SERVER_PROTOCOL . '://' . SERVER_NAME . ':' . SERVER_PORT);
1060     }
1061     else {
1062         define('SERVER_URL',
1063                SERVER_PROTOCOL . '://' . SERVER_NAME);
1064     }
1065
1066     if (!defined('VIRTUAL_PATH')) {
1067         // We'd like to auto-detect when the cases where apaches
1068         // 'Action' directive (or similar means) is used to
1069         // redirect page requests to a cgi-handler.
1070         //
1071         // In cases like this, requests for e.g. /wiki/HomePage
1072         // get redirected to a cgi-script called, say,
1073         // /path/to/wiki/index.php.  The script gets all
1074         // of /wiki/HomePage as it's PATH_INFO.
1075         //
1076         // The problem is:
1077         //   How to detect when this has happened reliably?
1078         //   How to pick out the "virtual path" (in this case '/wiki')?
1079         //
1080         // (Another time an redirect might occur is to a DirectoryIndex
1081         // -- the requested URI is '/wikidir/', the request gets
1082         // passed to '/wikidir/index.php'.  In this case, the
1083         // proper VIRTUAL_PATH is '/wikidir/index.php', since the
1084         // pages will appear at e.g. '/wikidir/index.php/HomePage'.
1085         //
1086
1087         $REDIRECT_URL = &$HTTP_SERVER_VARS['REDIRECT_URL'];
1088         if (USE_PATH_INFO and isset($REDIRECT_URL)
1089             and ! IsProbablyRedirectToIndex()) {
1090             // FIXME: This is a hack, and won't work if the requested
1091             // pagename has a slash in it.
1092             $temp = strtr(dirname($REDIRECT_URL . 'x'),"\\",'/');
1093             if ( ($temp == '/') || ($temp == '\\') )
1094                 $temp = '';
1095             define('VIRTUAL_PATH', $temp);
1096         } else {
1097             define('VIRTUAL_PATH', SCRIPT_NAME);
1098         }
1099     }
1100
1101     if (!defined('PATH_INFO_PREFIX')) {
1102         if (VIRTUAL_PATH != SCRIPT_NAME) {
1103             // Apache action handlers are used.
1104             define('PATH_INFO_PREFIX', VIRTUAL_PATH . '/');
1105         } else {
1106             define('PATH_INFO_PREFIX', '/');
1107         }
1108     }
1109
1110     define('PHPWIKI_BASE_URL',
1111            SERVER_URL . (USE_PATH_INFO ? VIRTUAL_PATH . '/' : SCRIPT_NAME));
1112
1113     // Detect PrettyWiki setup (not loading index.php directly)
1114     // $SCRIPT_FILENAME should be the same as __FILE__ in index.php
1115     if (!isset($SCRIPT_FILENAME))
1116         $SCRIPT_FILENAME = @$HTTP_SERVER_VARS['SCRIPT_FILENAME'];
1117     if (!isset($SCRIPT_FILENAME))
1118         $SCRIPT_FILENAME = @$HTTP_ENV_VARS['SCRIPT_FILENAME'];
1119     if (!isset($SCRIPT_FILENAME))
1120         $SCRIPT_FILENAME = dirname(__FILE__.'/../') . '/index.php';
1121     if (isWindows())
1122         $SCRIPT_FILENAME = str_replace('\\\\','\\',strtr($SCRIPT_FILENAME, '/', '\\'));
1123     define('SCRIPT_FILENAME', $SCRIPT_FILENAME);
1124
1125     // Get remote host name, if Apache hasn't done it for us
1126     if (empty($HTTP_SERVER_VARS['REMOTE_HOST'])
1127         and !empty($HTTP_SERVER_VARS['REMOTE_ADDR'])
1128         and ENABLE_REVERSE_DNS)
1129         $HTTP_SERVER_VARS['REMOTE_HOST'] = gethostbyaddr($HTTP_SERVER_VARS['REMOTE_ADDR']);
1130
1131 }
1132
1133 // Local Variables:
1134 // mode: php
1135 // tab-width: 8
1136 // c-basic-offset: 4
1137 // c-hanging-comment-ender-p: nil
1138 // indent-tabs-mode: nil
1139 // End:
1140 ?>