]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/IniConfig.php
helper for local debugging (Zend Personal Edition)
[SourceForge/phpwiki.git] / lib / IniConfig.php
1 <?php
2 rcs_id('$Id: IniConfig.php,v 1.74 2005-01-29 20:35:52 rurban Exp $');
3
4 /**
5  * A configurator intended to read it's config from a PHP-style INI file,
6  * instead of a PHP file.
7  *
8  * Pass a filename to the IniConfig() function and it will read all it's
9  * definitions from there, all by itself, and proceed to do a mass-define
10  * of all valid PHPWiki config items.  In this way, we can hopefully be
11  * totally backwards-compatible with the old index.php method, while still
12  * providing a much tastier on-going experience.
13  *
14  * @author: Joby Walker, Reini Urban, Matthew Palmer
15  */
16 /*
17  * Copyright 2004 $ThePhpWikiProgrammingTeam
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",'RCS_IDS','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(\"".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_" and substr($var,0,2) != "T_"  and substr($var,0,2) != "M_")
94             fwrite($fp, "if(!defined('".$var."')) define('".$var."',unserialize(\"".addslashes(serialize($val))."\"));\n");
95     }
96     fwrite($fp, "return 'noerr';}");
97     fwrite($fp,"?>");
98     fclose($fp);
99 }
100
101 function IniConfig($file) {
102
103     // check config/config.php dump for faster startup
104     $dump = substr($file, 0, -3)."php";
105     if (isWindows($dump)) $dump = str_replace("/","\\",$dump);
106     if (file_exists($dump) and is_readable($dump) and sort_file_mtime($dump, $file) < 0) {
107         @include($dump);
108         if (function_exists('wiki_configrestore') and (wiki_configrestore() === 'noerr')) {
109             fixup_dynamic_configs();
110             return;
111         }
112     }
113
114     if (!file_exists($file)) {
115         // first-time installer detection here...
116         // similar to SetupWiki()
117         include(dirname(__FILE__)."/install.php");
118         trigger_error("Datasource file '$file' does not exist", E_USER_ERROR);
119         exit();
120     }
121
122     // List of all valid config options to be define()d which take "values" (not
123     // booleans). Needs to be categorised, and generally made a lot tidier. 
124     $_IC_VALID_VALUE = array
125         ('WIKI_NAME', 'ADMIN_USER', 'ADMIN_PASSWD',
126          'DEFAULT_DUMP_DIR', 'HTML_DUMP_DIR',
127          'HTML_DUMP_SUFFIX', 'MAX_UPLOAD_SIZE', 'MINOR_EDIT_TIMEOUT',
128          'ACCESS_LOG', 'CACHE_CONTROL', 'CACHE_CONTROL_MAX_AGE',
129          'COOKIE_EXPIRATION_DAYS', 'COOKIE_DOMAIN',
130          'PASSWORD_LENGTH_MINIMUM', 'USER_AUTH_POLICY', 
131          'GROUP_METHOD',
132          'EDITING_POLICY', 'THEME', 'CHARSET',
133          'WIKI_PGSRC', 'DEFAULT_WIKI_PGSRC',
134          'ALLOWED_PROTOCOLS', 'INLINE_IMAGES', 'SUBPAGE_SEPARATOR', /*'KEYWORDS',*/
135          // extra logic:
136          //'DATABASE_PREFIX', 'DATABASE_DSN', 'DATABASE_TYPE', 'DATABASE_DBHANDLER',
137          'INTERWIKI_MAP_FILE', 'COPYRIGHTPAGE_TITLE', 'COPYRIGHTPAGE_URL',
138          'AUTHORPAGE_TITLE', 'AUTHORPAGE_URL', 
139          'WIKI_NAME_REGEXP',
140          'PLUGIN_CACHED_DATABASE', 'PLUGIN_CACHED_FILENAME_PREFIX',
141          'PLUGIN_CACHED_HIGHWATER', 'PLUGIN_CACHED_LOWWATER', 'PLUGIN_CACHED_MAXLIFETIME',
142          'PLUGIN_CACHED_MAXARGLEN', 'PLUGIN_CACHED_IMGTYPES',
143          // extra logic:
144          'SERVER_NAME','SERVER_PORT','SCRIPT_NAME', 'DATA_PATH', 'PHPWIKI_DIR', 'VIRTUAL_PATH',
145          );
146
147     // Optional values which need to be defined.
148     // These are not defined in config-default.ini and empty if not defined.
149     $_IC_OPTIONAL_VALUE = array
150         ( 
151          'DEBUG', 'TEMP_DIR', 'DEFAULT_LANGUAGE', 
152          'LDAP_AUTH_HOST','LDAP_SET_OPTION','LDAP_BASE_DN', 'LDAP_AUTH_USER',
153          'LDAP_AUTH_PASSWORD','LDAP_SEARCH_FIELD','LDAP_OU_GROUP','LDAP_OU_USERS',
154          'AUTH_USER_FILE','DBAUTH_AUTH_DSN',
155          'IMAP_AUTH_HOST', 'POP3_AUTH_HOST',
156          'AUTH_USER_FILE', 'AUTH_GROUP_FILE', 'AUTH_SESS_USER', 'AUTH_SESS_LEVEL',
157          'GOOGLE_LICENSE_KEY','FORTUNE_DIR',
158          'DISABLE_GETIMAGESIZE','DBADMIN_USER','DBADMIN_PASSWD',
159          'SESSION_SAVE_PATH', 'TOOLBAR_PAGELINK_PULLDOWN'
160          );
161
162     // List of all valid config options to be define()d which take booleans.
163     $_IC_VALID_BOOL = array
164         ('ENABLE_USER_NEW', 'ENABLE_PAGEPERM', 'ENABLE_EDIT_TOOLBAR', 'JS_SEARCHREPLACE',
165          'ENABLE_XHTML_XML', 'ENABLE_DOUBLECLICKEDIT',
166          'USECACHE', 'WIKIDB_NOCACHE_MARKUP',
167          'ENABLE_REVERSE_DNS', 'ENCRYPTED_PASSWD', 'ZIPDUMP_AUTH', 
168          'ENABLE_RAW_HTML', 'ENABLE_RAW_HTML_LOCKEDONLY', 'ENABLE_RAW_HTML_SAFE', 
169          'STRICT_MAILABLE_PAGEDUMPS', 'COMPRESS_OUTPUT',
170          'ALLOW_ANON_USER', 'ALLOW_ANON_EDIT',
171          'ALLOW_BOGO_LOGIN', 'ALLOW_USER_PASSWORDS',
172          'AUTH_USER_FILE_STORABLE', 'ALLOW_HTTP_AUTH_LOGIN',
173          'ALLOW_USER_LOGIN', 'ALLOW_LDAP_LOGIN', 'ALLOW_IMAP_LOGIN',
174          'WARN_NONPUBLIC_INTERWIKIMAP', 'USE_PATH_INFO',
175          'DISABLE_HTTP_REDIRECT',
176          'PLUGIN_CACHED_USECACHE', 'PLUGIN_CACHED_FORCE_SYNCMAP',
177          'BLOG_EMPTY_DEFAULT_PREFIX', 'DATABASE_PERSISTENT'
178          );
179
180     $rs = @parse_ini_file($file);
181     $rsdef = @parse_ini_file(dirname(__FILE__)."/../config/config-default.ini");
182     foreach ($rsdef as $k => $v) {
183         if (defined($k)) {
184             $rs[$k] = constant($k);
185         } elseif (!isset($rs[$k])) {
186             $rs[$k] = $v;
187         }
188     }
189     unset($k); unset($v); 
190     
191     foreach ($_IC_VALID_VALUE as $item) {
192         if (defined($item)) {
193             unset($rs[$item]);
194             continue;
195         }
196         if (array_key_exists($item, $rs)) {
197             define($item, $rs[$item]);
198             unset($rs[$item]);
199         //} elseif (array_key_exists($item, $rsdef)) {
200         //    define($item, $rsdef[$item]);
201         // calculate them later or not at all:
202         } elseif (in_array($item,
203                            array('DATABASE_PREFIX', 'SERVER_NAME', 'SERVER_PORT',
204                                  'SCRIPT_NAME', 'DATA_PATH', 'PHPWIKI_DIR', 'VIRTUAL_PATH',
205                                  'LDAP_AUTH_HOST','IMAP_AUTH_HOST','POP3_AUTH_HOST',
206                                  'PLUGIN_CACHED_CACHE_DIR'))) 
207         {
208             ;
209         } else {
210             trigger_error(sprintf("missing config setting for %s",$item));
211         }
212     }
213     unset($item);
214     
215     // Boolean options are slightly special - if they're set to any of
216     // '', 'false', '0', or 'no' (all case-insensitive) then the value will
217     // be a boolean false, otherwise if there is anything set it'll
218     // be true.
219     foreach ($_IC_VALID_BOOL as $item) {
220         if (defined($item)) {
221             unset($rs[$item]);
222             continue;
223         }
224         if (array_key_exists($item, $rs)) {
225             $val = $rs[$item];
226         //} elseif (array_key_exists($item, $rsdef)) {
227         //    $val = $rsdef[$item];
228         } else {
229             $val = false; //trigger_error(sprintf("missing boolean config setting for %s",$item));
230         }
231         
232         // calculate them later: old or dynamic constants
233         if (!array_key_exists($item, $rs) and
234             in_array($item, array('USE_PATH_INFO', 'USE_DB_SESSION',
235                                   'ALLOW_HTTP_AUTH_LOGIN', 'ALLOW_LDAP_LOGIN',
236                                   'ALLOW_IMAP_LOGIN', 'ALLOW_USER_LOGIN',
237                                   'REQUIRE_SIGNIN_BEFORE_EDIT',
238                                   'WIKIDB_NOCACHE_MARKUP')))
239         {
240             ;
241         }
242         elseif (!$val) {
243             define($item, false);
244         }
245         elseif (strtolower($val) == 'false' ||
246                 strtolower($val) == 'no' ||
247                 $val == '' ||
248                 $val == false ||
249                 $val == '0') {
250             define($item, false);
251         }
252         else {
253             define($item, true);
254         }
255         unset($rs[$item]);
256     }
257     unset($item);
258
259     // Database
260     global $DBParams;
261     foreach (array('DATABASE_TYPE'      => 'dbtype',
262                    'DATABASE_DSN'       => 'dsn',
263                    'DATABASE_SESSION_TABLE' => 'db_session_table',
264                    'DATABASE_DBA_HANDLER'   => 'dba_handler',
265                    'DATABASE_DIRECTORY' => 'directory',
266                    'DATABASE_TIMEOUT'   => 'timeout',
267                    'DATABASE_PREFIX'    => 'prefix')
268              as $item => $k)
269     {
270         if (defined($item)) {
271             $DBParams[$k] = constant($item);
272             unset($rs[$item]);
273         } elseif (array_key_exists($item, $rs)) {
274             $DBParams[$k] = $rs[$item];
275             define($item, $rs[$item]);
276             unset($rs[$item]);
277         } elseif (array_key_exists($item, $rsdef)) {
278             $DBParams[$k] = $rsdef[$item];
279             define($item, $rsdef[$item]);
280             unset($rsdef[$item]);
281         }
282     }
283     // USE_DB_SESSION default logic:
284     if (!defined('USE_DB_SESSION')) {
285         if ($DBParams['db_session_table']
286             and in_array($DBParams['dbtype'], array('SQL','ADODB'))) {
287             define('USE_DB_SESSION', true);
288         } elseif ($DBParams['dbtype'] == 'dba' and check_php_version(4,1,2)) {
289             define('USE_DB_SESSION', true);
290         } else {
291             define('USE_DB_SESSION', false);
292         }
293     }
294     unset($item); unset($k); 
295
296     // Expiry stuff
297     global $ExpireParams;
298     foreach (array('major','minor','author') as $major) {
299         foreach (array('max_age','min_age','min_keep','keep','max_keep') as $max) {
300             $item = strtoupper($major) . '_'. strtoupper($max);
301             if (defined($item)) $val = constant($item);
302             elseif (array_key_exists($item, $rs))
303                 $val = $rs[$item];
304             elseif (array_key_exists($item, $rsdef))
305                 $val = $rsdef[$item];
306             if (!isset($ExpireParams[$major]))
307                 $ExpireParams[$major] = array();
308             $ExpireParams[$major][$max] = $val;
309             unset($rs[$item]);
310         }
311     }
312     unset($item); unset($major); unset($max); 
313     
314     // User authentication
315     if (!isset($GLOBALS['USER_AUTH_ORDER']))
316         if (isset($rs['USER_AUTH_ORDER']))
317             $GLOBALS['USER_AUTH_ORDER'] = preg_split('/\s*:\s*/', 
318                                                      $rs['USER_AUTH_ORDER']);
319         else 
320             $GLOBALS['USER_AUTH_ORDER'] = array("PersonalPage");
321
322     // Now it's the external DB authentication stuff's turn
323     if (in_array('Db', $GLOBALS['USER_AUTH_ORDER']) && empty($rs['DBAUTH_AUTH_DSN'])) {
324         $rs['DBAUTH_AUTH_DSN'] = $DBParams['dsn'];
325     }
326     
327     global $DBAuthParams;
328     $DBAP_MAP = array('DBAUTH_AUTH_DSN' => 'auth_dsn',
329                       'DBAUTH_AUTH_CHECK' => 'auth_check',
330                       'DBAUTH_AUTH_USER_EXISTS' => 'auth_user_exists',
331                       'DBAUTH_AUTH_CRYPT_METHOD' => 'auth_crypt_method',
332                       'DBAUTH_AUTH_UPDATE' => 'auth_update',
333                       'DBAUTH_AUTH_CREATE' => 'auth_create',
334                       'DBAUTH_PREF_SELECT' => 'pref_select',
335                       'DBAUTH_PREF_UPDATE' => 'pref_update',
336                       'DBAUTH_IS_MEMBER' => 'is_member',
337                       'DBAUTH_GROUP_MEMBERS' => 'group_members',
338                       'DBAUTH_USER_GROUPS' => 'user_groups'
339                       );
340     foreach ($DBAP_MAP as $rskey => $apkey) {
341         if (defined($rskey)) {
342             $DBAuthParams[$apkey] = constant($rskey);
343         } elseif (isset($rs[$rskey])) {
344             $DBAuthParams[$apkey] = $rs[$rskey];
345             define($rskey, $rs[$rskey]);
346         } elseif (isset($rsdef[$rskey])) {
347             $DBAuthParams[$apkey] = $rsdef[$rskey];
348             define($rskey, $rsdef[$rskey]);
349         }
350         unset($rs[$rskey]);
351     }
352     unset($rskey); unset($apkey);
353
354     // TODO: Currently unsupported on non-SQL
355     if (!empty($rs['ACCESS_LOG_SQL'])) {
356         if (!in_array(DATABASE_TYPE, array('SQL','ADODB')))
357             define('ACCESS_LOG_SQL', 0);
358     }
359     // SQL defaults to ACCESS_LOG_SQL = 2
360     else {
361         define('ACCESS_LOG_SQL', in_array(DATABASE_TYPE, array('SQL','ADODB')) ? 2 : 0);
362     }
363
364     // optional values will be set to '' to simplify the logic.
365     foreach ($_IC_OPTIONAL_VALUE as $item) {
366         if (defined($item)) {
367             unset($rs[$item]);
368             continue;
369         }
370         if (array_key_exists($item, $rs)) {
371             define($item, $rs[$item]);
372             unset($rs[$item]);
373         } else 
374             define($item, '');
375     }
376     unset($item); 
377     
378     // LDAP bind options
379     global $LDAP_SET_OPTION;
380     if (defined('LDAP_SET_OPTION') and LDAP_SET_OPTION) {
381         $optlist = preg_split('/\s*:\s*/', LDAP_SET_OPTION);
382         foreach ($optlist as $opt) {
383             $bits = preg_split('/\s*=\s*/', $opt, 2);
384             if (count($bits) == 2) {
385                 if (is_string($bits[0]) and defined($bits[0]))
386                     $bits[0] = constant($bits[0]);
387                 $LDAP_SET_OPTION[$bits[0]] = $bits[1];
388             }
389             else {
390                 // Possibly throw some sort of error?
391             }
392         }
393         unset($opt); unset($bits);
394     }
395
396     // Default Wiki pages to force loading from pgsrc
397     global $GenericPages;
398     $GenericPages = preg_split('/\s*:\s*/', @$rs['DEFAULT_WIKI_PAGES']);
399
400     // Wiki name regexp:  Should be a define(), but might needed to be changed at runtime
401     // (different LC_CHAR need different posix classes)
402     global $WikiNameRegexp;
403     $WikiNameRegexp = constant('WIKI_NAME_REGEXP');
404     if (!trim($WikiNameRegexp))
405        $WikiNameRegexp = '(?<![[:alnum:]])(?:[[:upper:]][[:lower:]]+){2,}(?![[:alnum:]])';
406
407     // got rid of global $KeywordLinkRegexp by using a TextSearchQuery instead of "Category:Topic"
408     if (!isset($rs['KEYWORDS'])) $rs['KEYWORDS'] = @$rsdef['KEYWORDS'];
409     if (!isset($rs['KEYWORDS'])) $rs['KEYWORDS'] = "Category* OR Topic*";
410     if ($rs['KEYWORDS'] == 'Category:Topic') $rs['KEYWORDS'] = "Category* OR Topic*";
411     if (!defined('KEYWORDS')) define('KEYWORDS', $rs['KEYWORDS']);
412     //if (empty($keywords)) $keywords = array("Category","Topic");
413     //$KeywordLinkRegexp = '(?<=' . implode('|^', $keywords) . ')[[:upper:]].*$';
414
415     // TODO: can this be a constant?
416     global $DisabledActions;
417     if (!array_key_exists('DISABLED_ACTIONS', $rs) and array_key_exists('DISABLED_ACTIONS', $rsdef))
418         $rs['DISABLED_ACTIONS'] = @$rsdef['DISABLED_ACTIONS'];
419     if (array_key_exists('DISABLED_ACTIONS', $rs))
420         $DisabledActions = preg_split('/\s*:\s*/', $rs['DISABLED_ACTIONS']);
421
422     global $PLUGIN_CACHED_IMGTYPES;
423     $PLUGIN_CACHED_IMGTYPES = preg_split('/\s*[|:]\s*/', PLUGIN_CACHED_IMGTYPES);
424     if (empty($rs['PLUGIN_CACHED_CACHE_DIR']) and !empty($rsdef['PLUGIN_CACHED_CACHE_DIR']))
425         $rs['PLUGIN_CACHED_CACHE_DIR'] = $rsdef['PLUGIN_CACHED_CACHE_DIR'];
426     if (empty($rs['PLUGIN_CACHED_CACHE_DIR'])) {
427         if (!empty($rs['INCLUDE_PATH'])) {
428             ini_set('include_path', $rs['INCLUDE_PATH']);
429         }
430         if (!FindFile('/tmp/cache', 1)) { // [29ms]
431             if (!FindFile('/tmp', 1)) {
432                 mkdir('/tmp', 777);
433             }
434             mkdir('/tmp/cache', 777);
435         }
436         // will throw an error if not exists.
437         define('PLUGIN_CACHED_CACHE_DIR', FindFile('/tmp/cache',false,1)); 
438     } else {
439         define('PLUGIN_CACHED_CACHE_DIR', $rs['PLUGIN_CACHED_CACHE_DIR']);
440         // will throw an error if not exists.
441         FindFile(PLUGIN_CACHED_CACHE_DIR);
442     }
443
444     // process the rest of the config.ini settings:
445     foreach ($rs as $item => $v) {
446         if (defined($item)) {
447             continue;
448         } else {
449             define($item, $v);
450         }
451     }
452     unset($item); unset($v); 
453
454     unset($rs); 
455     unset($rsdef);
456     
457     fixup_static_configs(); //[1ms]
458     // Dump all globals and constants
459     // The question is if reading this is faster then doing IniConfig() + fixup_static_configs()
460     if (is_writable($dump)) {
461         save_dump($dump);
462     }
463     // store locale[] in config.php? This is too problematic.
464     fixup_dynamic_configs(); // [100ms]
465 }
466
467 // moved from lib/config.php [1ms]
468 function fixup_static_configs() {
469     global $FieldSeparator, $charset, $WikiNameRegexp, $KeywordLinkRegexp, $AllActionPages;
470     global $HTTP_SERVER_VARS, $DBParams, $LANG;
471
472     // init FileFinder to add proper include paths
473     FindFile("lib/interwiki.map",true);
474     
475     // "\x80"-"\x9f" (and "\x00" - "\x1f") are non-printing control
476     // chars in iso-8859-*
477     // $FieldSeparator = "\263"; // this is a superscript 3 in ISO-8859-1.
478     // $FieldSeparator = "\xFF"; // this byte should never appear in utf-8
479     // FIXME: get rid of constant. pref is dynamic and language specific
480     $charset = CHARSET;
481     // Disabled: Let the admin decide which charset.
482     //if (isset($LANG) and in_array($LANG,array('zh')))
483     //    $charset = 'utf-8';
484     if (strtolower($charset) == 'utf-8')
485         $FieldSeparator = "\xFF";
486     else
487         $FieldSeparator = "\x81";
488
489     $AllActionPages = explode(':',
490                               'AllPages:BackLinks:CreatePage:DebugInfo:EditMetaData:FindPage:'
491                               .'FullRecentChanges:FullTextSearch:FuzzyPages:InterWikiSearch:'
492                               .'LikePages:MostPopular:'
493                               .'OrphanedPages:PageDump:PageHistory:PageInfo:RandomPage:RateIt:'
494                               .'RecentChanges:RecentEdits:RecentComments:RelatedChanges:TitleSearch:'
495                               .'TranslateText:UpLoad:UserPreferences:WantedPages:WhoIsOnline:'
496                               .'PhpWikiAdministration/Remove:PhpWikiAdministration/Chmod:'
497                               .'PhpWikiAdministration/Rename:PhpWikiAdministration/Replace:'
498                               .'PhpWikiAdministration/SetAcl:PhpWikiAdministration/Chown'
499                               );
500
501     // If user has not defined PHPWIKI_DIR, and we need it
502     if (!defined('PHPWIKI_DIR') and !file_exists("themes/default")) {
503         $themes_dir = FindFile("themes");
504         define('PHPWIKI_DIR', dirname($themes_dir));
505     }
506         
507     // If user has not defined DATA_PATH, we want to use relative URLs.
508     if (!defined('DATA_PATH')) {
509         // fix similar to the one suggested by jkalmbach for 
510         // installations in the webrootdir, like "http://phpwiki.org/HomePage"
511         if (!defined('SCRIPT_NAME'))
512             define('SCRIPT_NAME', deduce_script_name());
513         $temp = dirname(SCRIPT_NAME);
514         if ( ($temp == '/') || ($temp == '\\') )
515             $temp = '';
516         define('DATA_PATH', $temp);
517         /*
518         if (USE_PATH_INFO)
519             define('DATA_PATH', '..');
520         */
521     }
522
523     //////////////////////////////////////////////////////////////////
524     // Select database
525     //
526     if (empty($DBParams['dbtype']))
527         $DBParams['dbtype'] = 'dba';
528
529     if (!defined('THEME'))
530         define('THEME', 'default');
531
532     // check whether the crypt() function is needed and present
533     if (defined('ENCRYPTED_PASSWD') && !function_exists('crypt')) {
534         $error = sprintf("Encrypted passwords cannot be used: %s.",
535                          "'function crypt()' not available in this version of php");
536         trigger_error($error);
537     }
538
539     if (!defined('ADMIN_PASSWD') or ADMIN_PASSWD == '')
540         trigger_error("The admin password cannot be empty. Please update your config/config.ini");
541
542     if (defined('USE_DB_SESSION') and USE_DB_SESSION) {
543         if (! $DBParams['db_session_table'] ) {
544             $DBParams['db_session_table'] = @$DBParams['prefix'] . 'session';
545             trigger_error(sprintf("DATABASE_SESSION_TABLE configuration set to %s.", 
546                                   $DBParams['db_session_table']),
547                           E_USER_ERROR);
548         }
549     }
550     // legacy:
551     if (!defined('ENABLE_USER_NEW')) define('ENABLE_USER_NEW',true);
552     if (!defined('ALLOW_USER_LOGIN'))
553         define('ALLOW_USER_LOGIN', defined('ALLOW_USER_PASSWORDS') && ALLOW_USER_PASSWORDS);
554     if (!defined('ALLOW_ANON_USER')) define('ALLOW_ANON_USER', true); 
555     if (!defined('ALLOW_ANON_EDIT')) define('ALLOW_ANON_EDIT', false); 
556     if (!defined('REQUIRE_SIGNIN_BEFORE_EDIT')) define('REQUIRE_SIGNIN_BEFORE_EDIT', ! ALLOW_ANON_EDIT);
557     if (!defined('ALLOW_BOGO_LOGIN')) define('ALLOW_BOGO_LOGIN', true);
558     if (!ENABLE_USER_NEW) {
559       if (!defined('ALLOW_HTTP_AUTH_LOGIN'))
560           define('ALLOW_HTTP_AUTH_LOGIN', false);
561       if (!defined('ALLOW_LDAP_LOGIN')) 
562           define('ALLOW_LDAP_LOGIN', function_exists('ldap_connect') and defined('LDAP_AUTH_HOST'));
563       if (!defined('ALLOW_IMAP_LOGIN')) 
564           define('ALLOW_IMAP_LOGIN', function_exists('imap_open') and defined('IMAP_AUTH_HOST'));
565     }
566
567     if (ALLOW_USER_LOGIN and !empty($DBAuthParams) and empty($DBAuthParams['auth_dsn'])) {
568         if (isset($DBParams['dsn']))
569             $DBAuthParams['auth_dsn'] = $DBParams['dsn'];
570     }
571 }
572
573 /** 
574  * Define constants which are client or request specific and should not be dumped statically.
575  * Such as the language, and the virtual and server paths, which might be overridden 
576  * by startup scripts for wiki farms.
577  */
578 function fixup_dynamic_configs() {
579     global $WikiNameRegexp, $KeywordLinkRegexp;
580     global $HTTP_SERVER_VARS, $DBParams, $LANG;
581
582     if (defined('INCLUDE_PATH'))
583         ini_set('include_path', INCLUDE_PATH);
584     if (defined('SESSION_SAVE_PATH'))
585         ini_set('session.save_path', SESSION_SAVE_PATH);
586     if (!defined('DEFAULT_LANGUAGE'))   // not needed anymore
587         define('DEFAULT_LANGUAGE', ''); // detect from client
588
589     update_locale(isset($LANG) ? $LANG : DEFAULT_LANGUAGE);
590     if (empty($LANG))
591         if (!defined("DEFAULT_LANGUAGE") or !DEFAULT_LANGUAGE)
592             // TODO: defer this to WikiRequest::initializeLang()
593             $LANG = guessing_lang(); 
594         else    
595             $LANG = DEFAULT_LANGUAGE;
596  
597     // Set up (possibly fake) gettext()
598     // Todo: this could be moved to fixup_static_configs()
599     if (!function_exists ('bindtextdomain')) {
600         $locale = array();
601
602         function gettext ($text) { 
603             global $locale;
604             if (!empty ($locale[$text]))
605                 return $locale[$text];
606             return $text;
607         }
608
609         function _ ($text) {
610             return gettext($text);
611         }
612     }
613     else {
614         // Working around really weird gettext problems: (4.3.2, 4.3.6 win)
615         // bindtextdomain() returns the current domain path.
616         // 1. If the script is not index.php but something like "de", on a different path
617         //    then bindtextdomain() fails, but after chdir to the correct path it will work okay.
618         // 2. But the weird error "Undefined variable: bindtextdomain" is generated then.
619         $bindtextdomain_path = FindFile("locale", false, true);
620         $chback = 0;
621         if (isWindows())
622             $bindtextdomain_path = str_replace("/", "\\", $bindtextdomain_path);
623         $bindtextdomain_real = @bindtextdomain("phpwiki", $bindtextdomain_path);
624         if ($bindtextdomain_real != $bindtextdomain_path) {
625             // this will happen with virtual_paths. chdir and try again.
626             chdir($bindtextdomain_path);
627             $chback = 1;
628             $bindtextdomain_real = @bindtextdomain("phpwiki", $bindtextdomain_path);
629         }
630         textdomain("phpwiki");
631         if ($chback) { // change back
632             chdir($bindtextdomain_real . (isWindows() ? "\\.." : "/.."));
633         }
634     }
635
636     // language dependent updates:
637     $WikiNameRegexp = pcre_fix_posix_classes($WikiNameRegexp);
638     $KeywordLinkRegexp = pcre_fix_posix_classes($KeywordLinkRegexp);
639     if (!defined('CATEGORY_GROUP_PAGE'))
640         define('CATEGORY_GROUP_PAGE',_("CategoryGroup"));
641     if (!defined('WIKI_NAME'))
642         define('WIKI_NAME', _("An unnamed PhpWiki"));
643     if (!defined('HOME_PAGE'))
644         define('HOME_PAGE', _("HomePage"));
645
646
647     //////////////////////////////////////////////////////////////////
648     // Autodetect URL settings:
649     //
650     foreach (array('SERVER_NAME','SERVER_PORT') as $var) {
651         //FIXME: for CGI without _SERVER
652         if (!defined($var) and !empty($HTTP_SERVER_VARS[$var]))
653             define($var, $HTTP_SERVER_VARS[$var]);
654     }
655     if (!defined('SERVER_NAME')) define('SERVER_NAME', '127.0.0.1');
656     if (!defined('SERVER_PORT')) define('SERVER_PORT', 80);
657     if (!defined('SERVER_PROTOCOL')) {
658         if (empty($HTTP_SERVER_VARS['HTTPS']) || $HTTP_SERVER_VARS['HTTPS'] == 'off')
659             define('SERVER_PROTOCOL', 'http');
660         else
661             define('SERVER_PROTOCOL', 'https');
662     }
663
664     if (!defined('SCRIPT_NAME'))
665         define('SCRIPT_NAME', deduce_script_name());
666
667     if (!defined('USE_PATH_INFO')) {
668         if (isCGI())
669             define('USE_PATH_INFO', false);
670         else {
671             /*
672              * If SCRIPT_NAME does not look like php source file,
673              * or user cgi we assume that php is getting run by an
674              * action handler in /cgi-bin.  In this case,
675              * I think there is no way to get Apache to pass
676              * useful PATH_INFO to the php script (PATH_INFO
677              * is used to the the php interpreter where the
678              * php script is...)
679              */
680             switch (php_sapi_name()) {
681             case 'apache':
682             case 'apache2handler':
683                 define('USE_PATH_INFO', true);
684                 break;
685             case 'cgi':
686             case 'apache2filter':
687                 define('USE_PATH_INFO', false);
688                 break;
689             default:
690                 define('USE_PATH_INFO', ereg('\.(php3?|cgi)$', SCRIPT_NAME));
691                 break;
692             }
693         }
694     }
695      
696     if (SERVER_PORT
697         && SERVER_PORT != (SERVER_PROTOCOL == 'https' ? 443 : 80)) {
698         define('SERVER_URL',
699                SERVER_PROTOCOL . '://' . SERVER_NAME . ':' . SERVER_PORT);
700     }
701     else {
702         define('SERVER_URL',
703                SERVER_PROTOCOL . '://' . SERVER_NAME);
704     }
705
706     if (!defined('VIRTUAL_PATH')) {
707         // We'd like to auto-detect when the cases where apaches
708         // 'Action' directive (or similar means) is used to
709         // redirect page requests to a cgi-handler.
710         //
711         // In cases like this, requests for e.g. /wiki/HomePage
712         // get redirected to a cgi-script called, say,
713         // /path/to/wiki/index.php.  The script gets all
714         // of /wiki/HomePage as it's PATH_INFO.
715         //
716         // The problem is:
717         //   How to detect when this has happened reliably?
718         //   How to pick out the "virtual path" (in this case '/wiki')?
719         //
720         // (Another time an redirect might occur is to a DirectoryIndex
721         // -- the requested URI is '/wikidir/', the request gets
722         // passed to '/wikidir/index.php'.  In this case, the
723         // proper VIRTUAL_PATH is '/wikidir/index.php', since the
724         // pages will appear at e.g. '/wikidir/index.php/HomePage'.
725         //
726
727         $REDIRECT_URL = &$HTTP_SERVER_VARS['REDIRECT_URL'];
728         if (USE_PATH_INFO and isset($REDIRECT_URL)
729             and ! IsProbablyRedirectToIndex()) {
730             // FIXME: This is a hack, and won't work if the requested
731             // pagename has a slash in it.
732             $temp = strtr(dirname($REDIRECT_URL . 'x'),"\\",'/');
733             if ( ($temp == '/') || ($temp == '\\') )
734                 $temp = '';
735             define('VIRTUAL_PATH', $temp);
736         } else {
737             define('VIRTUAL_PATH', SCRIPT_NAME);
738         }
739     }
740
741     if (VIRTUAL_PATH != SCRIPT_NAME) {
742         // Apache action handlers are used.
743         define('PATH_INFO_PREFIX', VIRTUAL_PATH . '/');
744     }
745     else
746         define('PATH_INFO_PREFIX', '/');
747
748     define('PHPWIKI_BASE_URL',
749            SERVER_URL . (USE_PATH_INFO ? VIRTUAL_PATH . '/' : SCRIPT_NAME));
750
751     // Detect PrettyWiki setup (not loading index.php directly)
752     // $SCRIPT_FILENAME should be the same as __FILE__ in index.php
753     if (!isset($SCRIPT_FILENAME))
754         $SCRIPT_FILENAME = @$HTTP_SERVER_VARS['SCRIPT_FILENAME'];
755     if (!isset($SCRIPT_FILENAME))
756         $SCRIPT_FILENAME = @$HTTP_ENV_VARS['SCRIPT_FILENAME'];
757     if (!isset($SCRIPT_FILENAME))
758         $SCRIPT_FILENAME = dirname(__FILE__.'/../') . '/index.php';
759     if (isWindows())
760         $SCRIPT_FILENAME = str_replace('\\\\','\\',strtr($SCRIPT_FILENAME, '/', '\\'));
761     define('SCRIPT_FILENAME', $SCRIPT_FILENAME);
762
763     // Get remote host name, if apache hasn't done it for us
764     if (empty($HTTP_SERVER_VARS['REMOTE_HOST'])
765         and !empty($HTTP_SERVER_VARS['REMOTE_ADDR'])
766         and ENABLE_REVERSE_DNS)
767         $HTTP_SERVER_VARS['REMOTE_HOST'] = gethostbyaddr($HTTP_SERVER_VARS['REMOTE_ADDR']);
768
769 }
770
771 // $Log: not supported by cvs2svn $
772 // Revision 1.73  2005/01/25 06:51:37  rurban
773 // new options: TOOLBAR_PAGELINK_PULLDOWN, DATABASE_PERSISTENT
774 //
775 // Revision 1.72  2005/01/13 07:29:27  rurban
776 // Default ACCESS_LOG_SQL = 2 on SQL/ADODB
777 //
778 // Revision 1.71  2005/01/10 18:06:40  rurban
779 // $LANG from DEFAULT_LANGUAGE
780 //
781 // Revision 1.70  2005/01/04 20:22:44  rurban
782 // guess $LANG based on client
783 //
784 // Revision 1.69  2004/12/23 14:07:34  rurban
785 // fix default language detection if DEFAULT_LANGUAGE=, collapse to 2char lang code, fix typo in @bindtextdomain
786 //
787 // Revision 1.68  2004/12/14 21:35:15  rurban
788 // support new BLOG_EMPTY_DEFAULT_PREFIX
789 //
790 // Revision 1.67  2004/11/30 09:51:35  rurban
791 // changed KEYWORDS from pageprefix to search term. added installer detection.
792 //
793 // Revision 1.66  2004/11/17 17:23:12  rurban
794 // fixed chdir back from locale
795 //
796 // Revision 1.65  2004/11/11 10:31:26  rurban
797 // Disable default options in config-dist.ini
798 // Add new CATEGORY_GROUP_PAGE root page: Default: Translation of "CategoryGroup"
799 // Clarify more options.
800 //
801 // Revision 1.64  2004/11/09 17:11:03  rurban
802 // * revert to the wikidb ref passing. there's no memory abuse there.
803 // * use new wikidb->_cache->_id_cache[] instead of wikidb->_iwpcache, to effectively
804 //   store page ids with getPageLinks (GleanDescription) of all existing pages, which
805 //   are also needed at the rendering for linkExistingWikiWord().
806 //   pass options to pageiterator.
807 //   use this cache also for _get_pageid()
808 //   This saves about 8 SELECT count per page (num all pagelinks).
809 // * fix passing of all page fields to the pageiterator.
810 // * fix overlarge session data which got broken with the latest ACCESS_LOG_SQL changes
811 //
812 // Revision 1.63  2004/11/07 16:47:32  rurban
813 // fix VIRTUAL_PATH
814 //
815 // Revision 1.62  2004/11/07 16:02:51  rurban
816 // new sql access log (for spam prevention), and restructured access log class
817 // dbh->quote (generic)
818 // pear_db: mysql specific parts seperated (using replace)
819 //
820 // Revision 1.61  2004/11/06 17:01:30  rurban
821 // unify DATABASE constants init as with DBAUTH
822 //
823 // Revision 1.60  2004/11/06 03:06:58  rurban
824 // make use of dumped static config state in config/config.php (if writable)
825 //
826 // Revision 1.59  2004/11/05 20:53:35  rurban
827 // login cleanup: better debug msg on failing login,
828 // checked password less immediate login (bogo or anon),
829 // checked olduser pref session error,
830 // better PersonalPage without password warning on minimal password length=0
831 //   (which is default now)
832 //
833 // Revision 1.58  2004/11/03 16:50:31  rurban
834 // some new defaults and constants, renamed USE_DOUBLECLICKEDIT to ENABLE_DOUBLECLICKEDIT
835 //
836 // Revision 1.57  2004/11/01 10:43:55  rurban
837 // seperate PassUser methods into seperate dir (memory usage)
838 // fix WikiUser (old) overlarge data session
839 // remove wikidb arg from various page class methods, use global ->_dbi instead
840 // ...
841 //
842 // Revision 1.56  2004/10/21 20:20:53  rurban
843 // From patch #970004 "Double clic to edit" by pixels.
844 //
845 // Revision 1.55  2004/10/14 19:23:58  rurban
846 // remove debugging prints
847 //
848 // Revision 1.54  2004/10/14 17:13:01  rurban
849 // use DATABASE_PREFIX
850 //
851 // Revision 1.53  2004/10/12 13:13:19  rurban
852 // php5 compatibility (5.0.1 ok)
853 //
854 // Revision 1.52  2004/10/04 23:38:07  rurban
855 // unittest fix
856 //
857 // Revision 1.51  2004/09/20 13:40:19  rurban
858 // define all config.ini settings, only the supported will be taken from -default.
859 // support USE_EXTERNAL_HTML2PDF renderer (htmldoc tested)
860 //
861 // Revision 1.50  2004/09/06 09:28:58  rurban
862 // fix PLUGIN_CACHED_CACHE_DIR fallback logic. ini entry did not work before
863 //
864 // Revision 1.49  2004/07/13 13:07:27  rurban
865 // improved DB_SESSION logic
866 //
867 // Revision 1.48  2004/07/05 13:09:37  rurban
868 // ENABLE_RAW_HTML_LOCKEDONLY, ENABLE_RAW_HTML_SAFE
869 //
870 // Revision 1.47  2004/07/03 16:51:05  rurban
871 // optional DBADMIN_USER:DBADMIN_PASSWD for action=upgrade (if no ALTER permission)
872 // added atomic mysql REPLACE for PearDB as in ADODB
873 // fixed _lock_tables typo links => link
874 // fixes unserialize ADODB bug in line 180
875 //
876 // Revision 1.46  2004/07/02 09:55:58  rurban
877 // more stability fixes: new DISABLE_GETIMAGESIZE if your php crashes when loading LinkIcons: failing getimagesize in old phps; blockparser stabilized
878 //
879 // Revision 1.45  2004/07/01 08:51:21  rurban
880 // dumphtml: added exclude, print pagename before processing
881 //
882 // Revision 1.44  2004/06/29 08:52:22  rurban
883 // Use ...version() $need_content argument in WikiDB also:
884 // To reduce the memory footprint for larger sets of pagelists,
885 // we don't cache the content (only true or false) and
886 // we purge the pagedata (_cached_html) also.
887 // _cached_html is only cached for the current pagename.
888 // => Vastly improved page existance check, ACL check, ...
889 //
890 // Now only PagedList info=content or size needs the whole content, esp. if sortable.
891 //
892 // Revision 1.43  2004/06/29 06:48:02  rurban
893 // Improve LDAP auth and GROUP_LDAP membership:
894 //   no error message on false password,
895 //   added two new config vars: LDAP_OU_USERS and LDAP_OU_GROUP with GROUP_METHOD=LDAP
896 //   fixed two group queries (this -> user)
897 // stdlib: ConvertOldMarkup still flawed
898 //
899 // Revision 1.42  2004/06/28 15:01:07  rurban
900 // fixed LDAP_SET_OPTION handling, LDAP error on connection problem
901 //
902 // Revision 1.41  2004/06/25 14:29:17  rurban
903 // WikiGroup refactoring:
904 //   global group attached to user, code for not_current user.
905 //   improved helpers for special groups (avoid double invocations)
906 // new experimental config option ENABLE_XHTML_XML (fails with IE, and document.write())
907 // fixed a XHTML validation error on userprefs.tmpl
908 //
909 // Revision 1.40  2004/06/22 07:12:48  rurban
910 // removed USE_TAGLINES constant
911 //
912 // Revision 1.39  2004/06/21 16:22:28  rurban
913 // add DEFAULT_DUMP_DIR and HTML_DUMP_DIR constants, for easier cmdline dumps,
914 // fixed dumping buttons locally (images/buttons/),
915 // support pages arg for dumphtml,
916 // optional directory arg for dumpserial + dumphtml,
917 // fix a AllPages warning,
918 // show dump warnings/errors on DEBUG,
919 // don't warn just ignore on wikilens pagelist columns, if not loaded.
920 // RateIt pagelist column is called "rating", not "ratingwidget" (Dan?)
921 //
922 // Revision 1.38  2004/06/21 08:39:36  rurban
923 // pear/Cache update from Cache-1.5.4 (added db and trifile container)
924 // pear/DB update from DB-1.6.1 (mysql bugfixes, php5 compat, DB_PORTABILITY features)
925 //
926 // Revision 1.37  2004/06/19 12:32:37  rurban
927 // new TEMP_DIR for ziplib
928 //
929 // Revision 1.36  2004/06/19 10:06:37  rurban
930 // Moved lib/plugincache-config.php to config/*.ini
931 // use PLUGIN_CACHED_* constants instead of global $CacheParams
932 //
933 // Revision 1.35  2004/06/15 09:15:52  rurban
934 // IMPORTANT: fixed passwd handling for passwords stored in prefs:
935 //   fix encrypted usage, actually store and retrieve them from db
936 //   fix bogologin with passwd set.
937 // fix php crashes with call-time pass-by-reference (references wrongly used
938 //   in declaration AND call). This affected mainly Apache2 and IIS.
939 //   (Thanks to John Cole to detect this!)
940 //
941 // Revision 1.34  2004/06/13 13:54:25  rurban
942 // Catch fatals on the four dump calls (as file and zip, as html and mimified)
943 // FoafViewer: Check against external requirements, instead of fatal.
944 // Change output for xhtmldumps: using file:// urls to the local fs.
945 // Catch SOAP fatal by checking for GOOGLE_LICENSE_KEY
946 // Import GOOGLE_LICENSE_KEY and FORTUNE_DIR from config.ini.
947 //
948 // Revision 1.33  2004/06/08 19:48:16  rurban
949 // fixed foreign setup: no ugly skipped msg for the GenericPages, load english actionpages if translated not found
950 //
951 // Revision 1.32  2004/06/08 10:54:46  rurban
952 // better acl dump representation, read back acl and owner
953 //
954 // Revision 1.31  2004/06/06 16:58:51  rurban
955 // added more required ActionPages for foreign languages
956 // install now english ActionPages if no localized are found. (again)
957 // fixed default anon user level to be 0, instead of -1
958 //   (wrong "required administrator to view this page"...)
959 //
960 // Revision 1.30  2004/06/04 12:40:21  rurban
961 // Restrict valid usernames to prevent from attacks against external auth or compromise
962 // possible holes.
963 // Fix various WikiUser old issues with default IMAP,LDAP,POP3 configs. Removed these.
964 // Fxied more warnings
965 //
966 // Revision 1.29  2004/06/04 11:58:38  rurban
967 // added USE_TAGLINES
968 //
969 // Revision 1.28  2004/06/03 20:42:49  rurban
970 // fixed bad warning #964850
971 //
972 // Revision 1.27  2004/06/03 10:18:19  rurban
973 // fix FileUser locking issues, new config ENABLE_PAGEPERM
974 //
975 // Revision 1.26  2004/06/02 18:01:45  rurban
976 // init global FileFinder to add proper include paths at startup
977 //   adds PHPWIKI_DIR if started from another dir, lib/pear also
978 // fix slashify for Windows
979 // fix USER_AUTH_POLICY=old, use only USER_AUTH_ORDER methods (besides HttpAuth)
980 //
981 // Revision 1.25  2004/05/27 17:49:05  rurban
982 // renamed DB_Session to DbSession (in CVS also)
983 // added WikiDB->getParam and WikiDB->getAuthParam method to get rid of globals
984 // remove leading slash in error message
985 // added force_unlock parameter to File_Passwd (no return on stale locks)
986 // fixed adodb session AffectedRows
987 // added FileFinder helpers to unify local filenames and DATA_PATH names
988 // editpage.php: new edit toolbar javascript on ENABLE_EDIT_TOOLBAR
989 //
990 // Revision 1.24  2004/05/18 13:33:13  rurban
991 // we already have a CGI function
992 //
993 // Revision 1.23  2004/05/17 17:43:29  rurban
994 // CGI: no PATH_INFO fix
995 //
996 // Revision 1.22  2004/05/16 22:07:35  rurban
997 // check more config-default and predefined constants
998 // various PagePerm fixes:
999 //   fix default PagePerms, esp. edit and view for Bogo and Password users
1000 //   implemented Creator and Owner
1001 //   BOGOUSERS renamed to BOGOUSER
1002 // fixed syntax errors in signin.tmpl
1003 //
1004 // Revision 1.21  2004/05/08 22:55:12  rurban
1005 // Fixed longstanding sf.net:demo problem. endless loop, caused by an empty definition of
1006 // WIKI_NAME_REGEXP. Exactly this constant wasn't checked for its default setting.
1007 //
1008 // Revision 1.20  2004/05/08 20:21:00  rurban
1009 // remove php tags in Log
1010 //
1011 // Revision 1.19  2004/05/08 19:55:29  rurban
1012 // support <span>inlined plugin-result</span>:
1013 //   if the plugin is parsed inside a line, use <span> instead of
1014 //   <div tightenable top bottom>
1015 //   e.g. for "This is the current Phpwiki <plugin SystemInfo version> version.
1016 //
1017 // Revision 1.18  2004/05/08 16:58:19  rurban
1018 // don't ignore some false config values (e.g. USE_PATH_INFO false was ignored)
1019 //
1020 // Revision 1.17  2004/05/06 19:26:15  rurban
1021 // improve stability, trying to find the InlineParser endless loop on sf.net
1022 //
1023 // remove end-of-zip comments to fix sf.net bug #777278 and probably #859628
1024 //
1025 // Revision 1.16  2004/05/02 15:10:05  rurban
1026 // new finally reliable way to detect if /index.php is called directly
1027 //   and if to include lib/main.php
1028 // new global AllActionPages
1029 // SetupWiki now loads all mandatory pages: HOME_PAGE, action pages, and warns if not.
1030 // WikiTranslation what=buttons for Carsten to create the missing MacOSX buttons
1031 // PageGroupTestOne => subpages
1032 // renamed PhpWikiRss to PhpWikiRecentChanges
1033 // more docs, default configs, ...
1034 //
1035 // Revision 1.15  2004/05/01 15:59:29  rurban
1036 // more php-4.0.6 compatibility: superglobals
1037 //
1038 // Revision 1.14  2004/04/29 23:25:12  rurban
1039 // re-ordered locale init (as in 1.3.9)
1040 // fixed loadfile with subpages, and merge/restore anyway
1041 //   (sf.net bug #844188)
1042 //
1043 // Revision 1.13  2004/04/29 21:54:05  rurban
1044 // typo
1045 //
1046 // Revision 1.12  2004/04/27 16:16:27  rurban
1047 // more subtle config problems with defaults
1048 //
1049 // Revision 1.11  2004/04/26 20:44:34  rurban
1050 // locking table specific for better databases
1051 //
1052 // Revision 1.10  2004/04/26 13:22:32  rurban
1053 // calculate bool old or dynamic constants later
1054 //
1055 // Revision 1.9  2004/04/26 12:15:01  rurban
1056 // check default config values
1057 //
1058 // Revision 1.8  2004/04/23 16:55:59  zorloc
1059 // If using Db auth and DBAUTH_AUTH_DSN is empty set DBAUTH_AUTH_DSN to $DBParams['dsn']
1060 //
1061 // Revision 1.7  2004/04/20 22:26:27  zorloc
1062 // Removed Pear_Config for parse_ini_file().
1063 //
1064 // Revision 1.6  2004/04/20 18:10:27  rurban
1065 // config refactoring:
1066 //   FileFinder is needed for WikiFarm scripts calling index.php
1067 //   config run-time calls moved to lib/IniConfig.php:fix_configs()
1068 //   added PHPWIKI_DIR smart-detection code (Theme finder)
1069 //   moved FileFind to lib/FileFinder.php
1070 //   cleaned lib/config.php
1071 //
1072 // Revision 1.5  2004/04/20 17:21:57  rurban
1073 // WikiFarm code: honor predefined constants
1074 //
1075 // Revision 1.4  2004/04/20 17:08:19  rurban
1076 // Some IniConfig fixes: prepend our private lib/pear dir
1077 //   switch from " to ' in the auth statements
1078 //   use error handling.
1079 // WikiUserNew changes for the new "'$variable'" syntax
1080 //   in the statements
1081 // TODO: optimization to put config vars into the session.
1082 //
1083
1084 // (c-file-style: "gnu")
1085 // Local Variables:
1086 // mode: php
1087 // tab-width: 8
1088 // c-basic-offset: 4
1089 // c-hanging-comment-ender-p: nil
1090 // indent-tabs-mode: nil
1091 // End:   
1092 ?>