]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/IniConfig.php
Fixed longstanding sf.net:demo problem. endless loop, caused by an empty definition of
[SourceForge/phpwiki.git] / lib / IniConfig.php
1 <?php
2 rcs_id('$Id: IniConfig.php,v 1.21 2004-05-08 22:55: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 /** TODO
37  * - Convert the value lists to provide defaults, so that every "if
38  *      (defined())" and "if (!defined())" can fuck off to the dismal hole
39  *      it belongs in.
40  *
41  * - Resurrect the larger "config object" code (in config/) so it'll aid the
42  *      GUI config writers, and allow us to do proper validation and default
43  *      value handling.
44  *
45  * - Get rid of WikiNameRegexp and KeywordLinkRegexp as globals by finding
46  *      everywhere that uses them as variables and modify the code to use
47  *      them as constants.  Will involve hacking around
48  *      pcre_fix_posix_classes (probably with redefines()).
49  */
50
51 include_once (dirname(__FILE__)."/config.php");
52 include_once (dirname(__FILE__)."/FileFinder.php");
53
54 function IniConfig($file) {
55     
56     //FindFile("pear/Config.php");
57     //require_once("Config.php");
58  
59     // List of all valid config options to be define()d which take "values" (not
60     // booleans). Needs to be categorised, and generally made a lot tidier. 
61    $_IC_VALID_VALUE = array
62         ('DEBUG', 'WIKI_NAME', 'ADMIN_USER', 'ADMIN_PASSWD',
63          'HTML_DUMP_SUFFIX', 'MAX_UPLOAD_SIZE', 'MINOR_EDIT_TIMEOUT',
64          'ACCESS_LOG', 'CACHE_CONTROL', 'CACHE_CONTROL_MAX_AGE',
65          'PASSWORD_LENGTH_MINIMUM', 'USER_AUTH_POLICY', 'LDAP_AUTH_HOST',
66          'LDAP_BASE_DN', 'LDAP_AUTH_USER', 'LDAP_AUTH_PASSWORD',
67          'LDAP_SEARCH_FIELD', 'IMAP_AUTH_HOST', 'POP3_AUTH_HOST',
68          'AUTH_USER_FILE', 'AUTH_SESS_USER', 'AUTH_SESS_LEVEL', 'GROUP_METHOD',
69          'AUTH_GROUP_FILE', 'EDITING_POLICY', 'THEME', 'CHARSET',
70          'DEFAULT_LANGUAGE', 'WIKI_PGSRC', 'DEFAULT_WIKI_PGSRC',
71          'ALLOWED_PROTOCOLS', 'INLINE_IMAGES', 'SUBPAGE_SEPARATOR',
72          'INTERWIKI_MAP_FILE', 'COPYRIGHTPAGE_TITLE', 'COPYRIGHTPAGE_URL',
73          'AUTHORPAGE_TITLE', 'AUTHORPAGE_URL', 'SERVER_NAME', 'SERVER_PORT',
74          'SCRIPT_NAME', 'DATA_PATH', 'PHPWIKI_DIR', 'VIRTUAL_PATH',
75          'WIKI_NAME_REGEXP');
76
77     // List of all valid config options to be define()d which take booleans.
78     $_IC_VALID_BOOL = array
79         ('ENABLE_USER_NEW', 'ENABLE_EDIT_TOOLBAR', 'JS_SEARCHREPLACE',
80          'ENABLE_REVERSE_DNS', 'ENCRYPTED_PASSWD', 'ZIPDUMP_AUTH', 
81          'ENABLE_RAW_HTML', 'STRICT_MAILABLE_PAGEDUMPS', 'COMPRESS_OUTPUT',
82          'WIKIDB_NOCACHE_MARKUP', 'ALLOW_ANON_USER', 'ALLOW_ANON_EDIT',
83          'ALLOW_BOGO_LOGIN', 'ALLOW_USER_PASSWORDS',
84          'AUTH_USER_FILE_STORABLE', 'ALLOW_HTTP_AUTH_LOGIN',
85          'ALLOW_USER_LOGIN', 'ALLOW_LDAP_LOGIN', 'ALLOW_IMAP_LOGIN',
86          'WARN_NONPUBLIC_INTERWIKIMAP', 'USE_PATH_INFO',
87          'DISABLE_HTTP_REDIRECT');
88
89     if(!file_exists($file)){
90         trigger_error("Datasource file '$file' does not exist", E_USER_ERROR);
91         exit();
92     }
93          
94     $rs = @parse_ini_file($file);
95     $rsdef = @parse_ini_file(dirname(__FILE__)."/../config/config-default.ini");
96
97     foreach ($_IC_VALID_VALUE as $item) {
98         if (defined($item)) continue;
99         if (array_key_exists($item, $rs)) {
100             define($item, $rs[$item]);
101         } elseif (array_key_exists($item, $rsdef)) {
102             define($item, $rsdef[$item]);
103         // calculate them later:
104         } elseif (in_array($item,array('DATABASE_PREFIX', 'SERVER_NAME', 'SERVER_PORT',
105                 'SCRIPT_NAME', 'DATA_PATH', 'PHPWIKI_DIR', 'VIRTUAL_PATH'))) {
106             ;
107         } else {
108             trigger_error(sprintf("missing config setting for %s",$item));
109         }
110     }
111
112     // Boolean options are slightly special - if they're set to any of
113     // '', 'false', '0', or 'no' (all case-insensitive) then the value will
114     // be a boolean false, otherwise if there is anything set it'll
115     // be true.
116     foreach ($_IC_VALID_BOOL as $item) {
117         if (defined($item)) continue;
118         if (array_key_exists($item, $rs)) {
119             $val = $rs[$item];
120         } elseif (array_key_exists($item, $rsdef)) {
121             $val = $rsdef[$item];
122         } else {
123             $val = false; //trigger_error(sprintf("missing boolean config setting for %s",$item));
124         }
125         
126         // calculate them later: old or dynamic constants
127         if (!array_key_exists($item, $rs) and
128             in_array($item,array('USE_PATH_INFO','USE_DB_SESSION',
129                                  'ALLOW_HTTP_AUTH_LOGIN','ALLOW_LDAP_LOGIN',
130                                  'ALLOW_IMAP_LOGIN','ALLOW_USER_LOGIN',
131                                  'REQUIRE_SIGNIN_BEFORE_EDIT',
132                                  'WIKIDB_NOCACHE_MARKUP')))
133         {
134             ;
135         }
136         elseif (!$val) {
137             define($item, false);
138         }
139         elseif (strtolower($val) == 'false' ||
140                 strtolower($val) == 'no' ||
141                 $val == '0') {
142             define($item, false);
143         }
144         else {
145             define($item, true);
146         }
147     }
148
149     // Special handling for some config options
150     if ($val = @$rs['INCLUDE_PATH']) {
151         ini_set('include_path', $val);
152     }
153
154     if ($val = @$rs['SESSION_SAVE_PATH']) {
155         ini_set('session.save_path', $val);
156     }
157
158     // Database
159     global $DBParams;
160     $DBParams['dbtype'] = @$rs['DATABASE_TYPE'];
161     if (isset($rs['DATABASE_DSN']))
162         $DBParams['dsn'] = $rs['DATABASE_DSN'];
163     if (isset($rs['DATABASE_PREFIX']))
164         $DBParams['prefix'] = $rs['DATABASE_PREFIX'];
165     $DBParams['db_session_table'] = @$rs['DATABASE_SESSION_TABLE'];
166     $DBParams['dba_handler'] = @$rs['DATABASE_DBA_HANDLER'];
167     $DBParams['directory'] = @$rs['DATABASE_DIRECTORY'];
168     $DBParams['timeout'] = @$rs['DATABASE_TIMEOUT'];
169     if (!defined('USE_DB_SESSION') and $DBParams['db_session_table'] and 
170         in_array($DBParams['dbtype'],array('SQL','ADODB','dba'))) {
171         define('USE_DB_SESSION', true);
172     }
173
174     // Expiry stuff
175     global $ExpireParams;
176
177     $ExpireParams['major'] = array(
178                                    'max_age' => @$rs['MAJOR_MAX_AGE'],
179                                    'min_age' => @$rs['MAJOR_MIN_AGE'],
180                                    'min_keep' => @$rs['MAJOR_MIN_KEEP'],
181                                    'keep' => @$rs['MAJOR_KEEP'],
182                                    'max_keep' => @$rs['MAJOR_MAX_KEEP']
183                                    );
184     $ExpireParams['minor'] = array(
185                                    'max_age' => @$rs['MINOR_MAX_AGE'],
186                                    'min_age' => @$rs['MINOR_MIN_AGE'],
187                                    'min_keep' => @$rs['MINOR_MIN_KEEP'],
188                                    'keep' => @$rs['MINOR_KEEP'],
189                                    'max_keep' => @$rs['MINOR_MAX_KEEP']
190                                    );
191     $ExpireParams['author'] = array(
192                                     'max_age' => @$rs['AUTHOR_MAX_AGE'],
193                                     'min_age' => @$rs['AUTHOR_MIN_AGE'],
194                                     'min_keep' => @$rs['AUTHOR_MIN_KEEP'],
195                                     'keep' => @$rs['AUTHOR_KEEP'],
196                                     'max_keep' => @$rs['AUTHOR_MAX_KEEP']
197                                     );
198
199     // User authentication
200     global $USER_AUTH_ORDER;
201     $USER_AUTH_ORDER = preg_split('/\s*:\s*/', @$rs['USER_AUTH_ORDER']);
202
203     // LDAP bind options
204     global $LDAP_SET_OPTION;
205     $optlist = preg_split('/\s*:\s*/', @$rs['LDAP_SET_OPTION']);
206     foreach ($optlist as $opt) {
207         $bits = preg_split('/\s*=\s*/', $opt, 2);
208         if (count($bits) == 2) {
209             $LDAP_SET_OPTION[$bits[0]] = $bits[1];
210         }
211         else {
212             // Possibly throw some sort of error?
213         }
214     }
215
216     // Now it's the external DB authentication stuff's turn
217     if (in_array('Db', $USER_AUTH_ORDER) && empty($rs['DBAUTH_AUTH_DSN'])) {
218         $rs['DBAUTH_AUTH_DSN'] = $DBParams['dsn'];
219     }
220     
221     global $DBAuthParams;
222     $DBAP_MAP = array('DBAUTH_AUTH_DSN' => 'auth_dsn',
223                       'DBAUTH_AUTH_CHECK' => 'auth_check',
224                       'DBAUTH_AUTH_USER_EXISTS' => 'auth_user_exists',
225                       'DBAUTH_AUTH_CRYPT_METHOD' => 'auth_crypt_method',
226                       'DBAUTH_AUTH_UPDATE' => 'auth_update',
227                       'DBAUTH_AUTH_CREATE' => 'auth_create',
228                       'DBAUTH_PREF_SELECT' => 'pref_select',
229                       'DBAUTH_PREF_UPDATE' => 'pref_update',
230                       'DBAUTH_IS_MEMBER' => 'is_member',
231                       'DBAUTH_GROUP_MEMBERS' => 'group_members',
232                       'DBAUTH_USER_GROUPS' => 'user_groups'
233                       );
234
235     foreach ($DBAP_MAP as $rskey => $apkey) {
236         if (isset($rs[$rskey])) {
237             $DBAuthParams[$apkey] = $rs[$rskey];
238         }
239     }
240
241     // Default Wiki pages to force loading from pgsrc
242     global $GenericPages;
243     $GenericPages = preg_split('/\s*:\s*/', @$rs['DEFAULT_WIKI_PAGES']);
244
245     // Wiki name regexp:  Should be a define(), but might needed to be changed at runtime
246     // (different LC_CHAR need different posix classes)
247     global $WikiNameRegexp;
248     $WikiNameRegexp = constant('WIKI_NAME_REGEXP');
249     if (!trim($WikiNameRegexp))
250        $WikiNameRegexp = '(?<![[:alnum:]])(?:[[:upper:]][[:lower:]]+){2,}(?![[:alnum:]])';
251
252     // Another "too-tricky" redefine
253     global $KeywordLinkRegexp;
254     if (!isset($rs['KEYWORDS'])) $rs['KEYWORDS'] = "Category:Topic";
255     $keywords = preg_split('/\s*:\s*/', $rs['KEYWORDS']);
256     if (empty($keywords)) $keywords = array("Category","Topic");
257     $KeywordLinkRegexp = '(?<=' . implode('|^', $keywords) . ')[[:upper:]].*$';
258         
259     global $DisabledActions;
260     $DisabledActions = preg_split('/\s*:\s*/', @$rs['DISABLED_ACTIONS']);
261     
262     /*global $AllowedProtocols, $InlineImages;
263     $AllowedProtocols = constant("ALLOWED_PROTOCOLS");
264     $InlineImages = constant("INLINE_IMAGES");*/
265
266     fix_configs();
267 }
268
269 // moved from lib/config.php
270 function fix_configs() {
271     global $FieldSeparator, $charset, $WikiNameRegexp, $KeywordLinkRegexp, $AllActionPages;
272     global $DisabledActions, $HTTP_SERVER_VARS, $DBParams, $LANG;
273
274     // "\x80"-"\x9f" (and "\x00" - "\x1f") are non-printing control
275     // chars in iso-8859-*
276     // $FieldSeparator = "\263"; // this is a superscript 3 in ISO-8859-1.
277     // $FieldSeparator = "\xFF"; // this byte should never appear in utf-8
278     // FIXME: get rid of constant. pref is dynamic and language specific
279     $charset = CHARSET;
280     if (isset($LANG) and in_array($LANG,array('ja','zh')))
281         $charset = 'utf-8';
282     if (strtolower($charset) == 'utf-8')
283         $FieldSeparator = "\xFF";
284     else
285         $FieldSeparator = "\x81";
286
287     if (!defined('DEFAULT_LANGUAGE'))
288         define('DEFAULT_LANGUAGE', 'en');
289     update_locale(isset($LANG) ? $LANG : DEFAULT_LANGUAGE);
290
291     // Set up (possibly fake) gettext()
292     //
293     if (!function_exists ('bindtextdomain')) {
294         $locale = array();
295
296         function gettext ($text) { 
297             global $locale;
298             if (!empty ($locale[$text]))
299                 return $locale[$text];
300             return $text;
301         }
302
303         function _ ($text) {
304             return gettext($text);
305         }
306     }
307     else {
308         // Working around really weird gettext problems: (4.3.2, 4.3.6 win)
309         // bindtextdomain() returns the current domain path.
310         // 1. If the script is not index.php but something like "de", on a different path
311         //    then bindtextdomain() fails, but after chdir to the correct path it will work okay.
312         // 2. But the weird error "Undefined variable: bindtextdomain" is generated then.
313         $bindtextdomain_path = FindFile("locale", false, true);
314         if (isWindows())
315             $bindtextdomain_path = str_replace("/","\\",$bindtextdomain_path);
316         $bindtextdomain_real = @bindtextdomain("phpwiki", $bindtextdomain);
317         if ($bindtextdomain_real != $bindtextdomain_path) {
318             // this will happen with virtual_paths. chdir and try again.
319             chdir($bindtextdomain_path);
320             $bindtextdomain_real = @bindtextdomain("phpwiki", $bindtextdomain);
321         }
322         textdomain("phpwiki");
323         if ($bindtextdomain_real != $bindtextdomain_path) { // change back
324             chdir($bindtextdomain_real . (isWindows() ? "\\.." : "/.."));
325         }
326     }
327
328     $WikiNameRegexp = pcre_fix_posix_classes($WikiNameRegexp);
329     $KeywordLinkRegexp = pcre_fix_posix_classes($KeywordLinkRegexp);
330
331     $AllActionPages = explode(':','AllPages:BackLinks:DebugInfo:FindPage:FullRecentChanges:'
332                               .'FullTextSearch:FuzzyPages:InterWikiSearch:LikePages:MostPopular:'
333                               .'OrphanedPages:PageDump:PageHistory:PageInfo:RandomPage:RateIt:'
334                               .'RecentChanges:RecentEdits:RelatedChanges:TitleSearch:TranslateText:'
335                               .'UpLoad:UserPreferences:WantedPages:WhoIsOnline');
336
337     //////////////////////////////////////////////////////////////////
338     // Autodetect URL settings:
339     //
340     if (!defined('SERVER_NAME')) define('SERVER_NAME', $HTTP_SERVER_VARS['SERVER_NAME']);
341     if (!defined('SERVER_PORT')) define('SERVER_PORT', $HTTP_SERVER_VARS['SERVER_PORT']);
342     if (!defined('SERVER_PROTOCOL')) {
343         if (empty($HTTP_SERVER_VARS['HTTPS']) || $HTTP_SERVER_VARS['HTTPS'] == 'off')
344             define('SERVER_PROTOCOL', 'http');
345         else
346             define('SERVER_PROTOCOL', 'https');
347     }
348
349     if (!defined('SCRIPT_NAME'))
350         define('SCRIPT_NAME', deduce_script_name());
351
352     if (!defined('USE_PATH_INFO')) {
353             /*
354              * If SCRIPT_NAME does not look like php source file,
355              * or user cgi we assume that php is getting run by an
356              * action handler in /cgi-bin.  In this case,
357              * I think there is no way to get Apache to pass
358              * useful PATH_INFO to the php script (PATH_INFO
359              * is used to the the php interpreter where the
360              * php script is...)
361              */
362             switch (php_sapi_name()) {
363             case 'apache':
364             case 'apache2handler':
365                 define('USE_PATH_INFO', true);
366                 break;
367             case 'cgi':
368             case 'apache2filter':
369                 define('USE_PATH_INFO', false);
370                 break;
371             default:
372                 define('USE_PATH_INFO', ereg('\.(php3?|cgi)$', SCRIPT_NAME));
373                 break;
374             }
375         }
376      
377     // If user has not defined PHPWIKI_DIR, and we need it
378     if (!defined('PHPWIKI_DIR') and !file_exists("themes/default")) {
379         $themes_dir = FindFile("themes");
380         define('PHPWIKI_DIR', dirname($themes_dir));
381     }
382         
383     if (!defined('VIRTUAL_PATH')) {
384         // We'd like to auto-detect when the cases where apaches
385         // 'Action' directive (or similar means) is used to
386         // redirect page requests to a cgi-handler.
387         //
388         // In cases like this, requests for e.g. /wiki/HomePage
389         // get redirected to a cgi-script called, say,
390         // /path/to/wiki/index.php.  The script gets all
391         // of /wiki/HomePage as it's PATH_INFO.
392         //
393         // The problem is:
394         //   How to detect when this has happened reliably?
395         //   How to pick out the "virtual path" (in this case '/wiki')?
396         //
397         // (Another time an redirect might occur is to a DirectoryIndex
398         // -- the requested URI is '/wikidir/', the request gets
399         // passed to '/wikidir/index.php'.  In this case, the
400         // proper VIRTUAL_PATH is '/wikidir/index.php', since the
401         // pages will appear at e.g. '/wikidir/index.php/HomePage'.
402         //
403
404         $REDIRECT_URL = &$HTTP_SERVER_VARS['REDIRECT_URL'];
405         if (USE_PATH_INFO and isset($REDIRECT_URL)
406             and ! IsProbablyRedirectToIndex()) {
407             // FIXME: This is a hack, and won't work if the requested
408             // pagename has a slash in it.
409             $temp = strtr(dirname($REDIRECT_URL . 'x'),"\\",'/');
410             if ( ($temp == '/') || ($temp == '\\') )
411                 $temp = '';
412             define('VIRTUAL_PATH', $temp);
413         } else {
414             define('VIRTUAL_PATH', SCRIPT_NAME);
415         }
416     }
417
418     // If user has not defined DATA_PATH, we want to use relative URLs.
419     if (!defined('DATA_PATH')) {
420         // fix similar to the one suggested by jkalmbach for 
421         // installations in the webrootdir, like "http://phpwiki.org/HomePage"
422         $temp = dirname(SCRIPT_NAME);
423         if ( ($temp == '/') || ($temp == '\\') )
424             $temp = '';
425         define('DATA_PATH', $temp);
426         /*
427         if (USE_PATH_INFO)
428             define('DATA_PATH', '..');
429         */
430     }
431
432     if (SERVER_PORT
433         && SERVER_PORT != (SERVER_PROTOCOL == 'https' ? 443 : 80)) {
434         define('SERVER_URL',
435                SERVER_PROTOCOL . '://' . SERVER_NAME . ':' . SERVER_PORT);
436     }
437     else {
438         define('SERVER_URL',
439                SERVER_PROTOCOL . '://' . SERVER_NAME);
440     }
441
442     if (VIRTUAL_PATH != SCRIPT_NAME) {
443         // Apache action handlers are used.
444         define('PATH_INFO_PREFIX', VIRTUAL_PATH . '/');
445     }
446     else
447         define('PATH_INFO_PREFIX', '/');
448
449     define('PHPWIKI_BASE_URL',
450            SERVER_URL . (USE_PATH_INFO ? VIRTUAL_PATH . '/' : SCRIPT_NAME));
451
452     // Detect PrettyWiki setup (not loading index.php directly)
453     // $SCRIPT_FILENAME should be the same as __FILE__ in index.php
454     if (!isset($SCRIPT_FILENAME))
455         $SCRIPT_FILENAME = @$HTTP_SERVER_VARS['SCRIPT_FILENAME'];
456     if (!isset($SCRIPT_FILENAME))
457         $SCRIPT_FILENAME = @$HTTP_ENV_VARS['SCRIPT_FILENAME'];
458     if (!isset($SCRIPT_FILENAME))
459         $SCRIPT_FILENAME = dirname(__FILE__.'/../') . '/index.php';
460     if (isWindows())
461         $SCRIPT_FILENAME = strtr($SCRIPT_FILENAME,'/','\\');
462     define('SCRIPT_FILENAME',$SCRIPT_FILENAME);
463
464     //////////////////////////////////////////////////////////////////
465     // Select database
466     //
467     if (empty($DBParams['dbtype']))
468         $DBParams['dbtype'] = 'dba';
469
470     if (!defined('THEME'))
471         define('THEME', 'default');
472
473     if (!defined('WIKI_NAME'))
474         define('WIKI_NAME', _("An unnamed PhpWiki"));
475
476     if (!defined('HOME_PAGE'))
477         define('HOME_PAGE', _("HomePage"));
478
479     // FIXME: delete
480     // Access log
481     if (!defined('ACCESS_LOG'))
482         define('ACCESS_LOG', '');
483
484     // FIXME: delete
485     // Get remote host name, if apache hasn't done it for us
486     if (empty($HTTP_SERVER_VARS['REMOTE_HOST']) && ENABLE_REVERSE_DNS)
487         $HTTP_SERVER_VARS['REMOTE_HOST'] = gethostbyaddr($HTTP_SERVER_VARS['REMOTE_ADDR']);
488
489     // check whether the crypt() function is needed and present
490     if (defined('ENCRYPTED_PASSWD') && !function_exists('crypt')) {
491         $error = sprintf(_("Encrypted passwords cannot be used: %s."),
492                          "'function crypt()' not available in this version of php");
493         trigger_error($error);
494     }
495
496     if (!defined('ADMIN_PASSWD') or ADMIN_PASSWD == '')
497         trigger_error(_("The admin password cannot be empty. Please update your /index.php"));
498
499     if (defined('USE_DB_SESSION') and USE_DB_SESSION) {
500         if (! $DBParams['db_session_table'] ) {
501             trigger_error(_("Empty db_session_table. Turn USE_DB_SESSION off or define the table name."), 
502                           E_USER_ERROR);
503             // this is flawed. constants cannot be changed.
504             define('USE_DB_SESSION',false);
505             $DBParams['db_session_table'] = @$DBParams['prefix'] . 'session';
506         }
507     } else {
508         // default: true (since v1.3.8)
509         if (!defined('USE_DB_SESSION'))
510             define('USE_DB_SESSION',true);
511     }
512     // legacy:
513     if (!defined('ENABLE_USER_NEW')) define('ENABLE_USER_NEW',true);
514     if (!defined('ALLOW_USER_LOGIN'))
515         define('ALLOW_USER_LOGIN', defined('ALLOW_USER_PASSWORDS') && ALLOW_USER_PASSWORDS);
516     if (!defined('ALLOW_ANON_USER')) define('ALLOW_ANON_USER', true); 
517     if (!defined('ALLOW_ANON_EDIT')) define('ALLOW_ANON_EDIT', false); 
518     if (!defined('REQUIRE_SIGNIN_BEFORE_EDIT')) define('REQUIRE_SIGNIN_BEFORE_EDIT', ! ALLOW_ANON_EDIT);
519     if (!defined('ALLOW_BOGO_LOGIN')) define('ALLOW_BOGO_LOGIN', true);
520
521     if (ALLOW_USER_LOGIN and !empty($DBAuthParams) and empty($DBAuthParams['auth_dsn'])) {
522         if (isset($DBParams['dsn']))
523             $DBAuthParams['auth_dsn'] = $DBParams['dsn'];
524     }
525 }
526
527 // $Log: not supported by cvs2svn $
528 // Revision 1.20  2004/05/08 20:21:00  rurban
529 // remove php tags in Log
530 //
531 // Revision 1.19  2004/05/08 19:55:29  rurban
532 // support <span>inlined plugin-result</span>:
533 //   if the plugin is parsed inside a line, use <span> instead of
534 //   <div tightenable top bottom>
535 //   e.g. for "This is the current Phpwiki <plugin SystemInfo version> version.
536 //
537 // Revision 1.18  2004/05/08 16:58:19  rurban
538 // don't ignore some false config values (e.g. USE_PATH_INFO false was ignored)
539 //
540 // Revision 1.17  2004/05/06 19:26:15  rurban
541 // improve stability, trying to find the InlineParser endless loop on sf.net
542 //
543 // remove end-of-zip comments to fix sf.net bug #777278 and probably #859628
544 //
545 // Revision 1.16  2004/05/02 15:10:05  rurban
546 // new finally reliable way to detect if /index.php is called directly
547 //   and if to include lib/main.php
548 // new global AllActionPages
549 // SetupWiki now loads all mandatory pages: HOME_PAGE, action pages, and warns if not.
550 // WikiTranslation what=buttons for Carsten to create the missing MacOSX buttons
551 // PageGroupTestOne => subpages
552 // renamed PhpWikiRss to PhpWikiRecentChanges
553 // more docs, default configs, ...
554 //
555 // Revision 1.15  2004/05/01 15:59:29  rurban
556 // more php-4.0.6 compatibility: superglobals
557 //
558 // Revision 1.14  2004/04/29 23:25:12  rurban
559 // re-ordered locale init (as in 1.3.9)
560 // fixed loadfile with subpages, and merge/restore anyway
561 //   (sf.net bug #844188)
562 //
563 // Revision 1.13  2004/04/29 21:54:05  rurban
564 // typo
565 //
566 // Revision 1.12  2004/04/27 16:16:27  rurban
567 // more subtle config problems with defaults
568 //
569 // Revision 1.11  2004/04/26 20:44:34  rurban
570 // locking table specific for better databases
571 //
572 // Revision 1.10  2004/04/26 13:22:32  rurban
573 // calculate bool old or dynamic constants later
574 //
575 // Revision 1.9  2004/04/26 12:15:01  rurban
576 // check default config values
577 //
578 // Revision 1.8  2004/04/23 16:55:59  zorloc
579 // If using Db auth and DBAUTH_AUTH_DSN is empty set DBAUTH_AUTH_DSN to $DBParams['dsn']
580 //
581 // Revision 1.7  2004/04/20 22:26:27  zorloc
582 // Removed Pear_Config for parse_ini_file().
583 //
584 // Revision 1.6  2004/04/20 18:10:27  rurban
585 // config refactoring:
586 //   FileFinder is needed for WikiFarm scripts calling index.php
587 //   config run-time calls moved to lib/IniConfig.php:fix_configs()
588 //   added PHPWIKI_DIR smart-detection code (Theme finder)
589 //   moved FileFind to lib/FileFinder.php
590 //   cleaned lib/config.php
591 //
592 // Revision 1.5  2004/04/20 17:21:57  rurban
593 // WikiFarm code: honor predefined constants
594 //
595 // Revision 1.4  2004/04/20 17:08:19  rurban
596 // Some IniConfig fixes: prepend our private lib/pear dir
597 //   switch from " to ' in the auth statements
598 //   use error handling.
599 // WikiUserNew changes for the new "'$variable'" syntax
600 //   in the statements
601 // TODO: optimization to put config vars into the session.
602 //
603
604 // (c-file-style: "gnu")
605 // Local Variables:
606 // mode: php
607 // tab-width: 8
608 // c-basic-offset: 4
609 // c-hanging-comment-ender-p: nil
610 // indent-tabs-mode: nil
611 // End:   
612 ?>