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