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