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