]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/IniConfig.php
WikiGroup refactoring:
[SourceForge/phpwiki.git] / lib / IniConfig.php
1 <?php
2 rcs_id('$Id: IniConfig.php,v 1.41 2004-06-25 14:29:17 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  * TODO:
42  * - Old-style index.php => config/config.ini converter.
43  *
44  * - config.ini => config.php dumper for faster startup.
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 IniConfig($file) {
67     
68     // List of all valid config options to be define()d which take "values" (not
69     // booleans). Needs to be categorised, and generally made a lot tidier. 
70     $_IC_VALID_VALUE = array
71         ('WIKI_NAME', 'ADMIN_USER', 'ADMIN_PASSWD',
72          'DEFAULT_DUMP_DIR', 'HTML_DUMP_DIR',
73          'HTML_DUMP_SUFFIX', 'MAX_UPLOAD_SIZE', 'MINOR_EDIT_TIMEOUT',
74          'ACCESS_LOG', 'CACHE_CONTROL', 'CACHE_CONTROL_MAX_AGE',
75          'PASSWORD_LENGTH_MINIMUM', 'USER_AUTH_POLICY', 
76          'GROUP_METHOD',
77          'EDITING_POLICY', 'THEME', 'CHARSET',
78          'DEFAULT_LANGUAGE', 'WIKI_PGSRC', 'DEFAULT_WIKI_PGSRC',
79          'ALLOWED_PROTOCOLS', 'INLINE_IMAGES', 'SUBPAGE_SEPARATOR',
80          'INTERWIKI_MAP_FILE', 'COPYRIGHTPAGE_TITLE', 'COPYRIGHTPAGE_URL',
81          'AUTHORPAGE_TITLE', 'AUTHORPAGE_URL', 'SERVER_NAME', 'SERVER_PORT',
82          'SCRIPT_NAME', 'DATA_PATH', 'PHPWIKI_DIR', 'VIRTUAL_PATH',
83          'WIKI_NAME_REGEXP',
84          'PLUGIN_CACHED_DATABASE', 'PLUGIN_CACHED_FILENAME_PREFIX',
85          'PLUGIN_CACHED_HIGHWATER', 'PLUGIN_CACHED_LOWWATER', 'PLUGIN_CACHED_MAXLIFETIME',
86          'PLUGIN_CACHED_MAXARGLEN', 'PLUGIN_CACHED_IMGTYPES'
87          );
88
89     // Optional values which need to be defined.
90     // These are not defined in config-default.ini and empty if not defined.
91     $_IC_OPTIONAL_VALUE = array
92         ( 
93          'DEBUG', 'TEMP_DIR',
94          'LDAP_AUTH_HOST','LDAP_SET_OPTION','LDAP_BASE_DN', 'LDAP_AUTH_USER',
95          'LDAP_AUTH_PASSWORD','LDAP_SEARCH_FIELD','AUTH_USER_FILE','DBAUTH_AUTH_DSN',
96          'IMAP_AUTH_HOST', 'POP3_AUTH_HOST',
97          'AUTH_USER_FILE', 'AUTH_GROUP_FILE', 'AUTH_SESS_USER', 'AUTH_SESS_LEVEL',
98          'GOOGLE_LICENSE_KEY','FORTUNE_DIR',
99          );
100
101     // List of all valid config options to be define()d which take booleans.
102     $_IC_VALID_BOOL = array
103         ('ENABLE_USER_NEW', 'ENABLE_PAGEPERM', 'ENABLE_EDIT_TOOLBAR', 'JS_SEARCHREPLACE',
104          'ENABLE_REVERSE_DNS', 'ENCRYPTED_PASSWD', 'ZIPDUMP_AUTH', 
105          'ENABLE_RAW_HTML', 'STRICT_MAILABLE_PAGEDUMPS', 'COMPRESS_OUTPUT',
106          'WIKIDB_NOCACHE_MARKUP', 'ALLOW_ANON_USER', 'ALLOW_ANON_EDIT',
107          'ALLOW_BOGO_LOGIN', 'ALLOW_USER_PASSWORDS',
108          'AUTH_USER_FILE_STORABLE', 'ALLOW_HTTP_AUTH_LOGIN',
109          'ALLOW_USER_LOGIN', 'ALLOW_LDAP_LOGIN', 'ALLOW_IMAP_LOGIN',
110          'WARN_NONPUBLIC_INTERWIKIMAP', 'USE_PATH_INFO',
111          'DISABLE_HTTP_REDIRECT',
112          'PLUGIN_CACHED_USECACHE', 'PLUGIN_CACHED_FORCE_SYNCMAP',
113          'ENABLE_XHTML_XML'
114          );
115
116     if(!file_exists($file)){
117         trigger_error("Datasource file '$file' does not exist", E_USER_ERROR);
118         exit();
119     }
120          
121     $rs = @parse_ini_file($file);
122     $rsdef = @parse_ini_file(dirname(__FILE__)."/../config/config-default.ini");
123     foreach ($rsdef as $k => $v) {
124         if (defined($k))
125             $rs[$k] = constant($k);
126         elseif (!isset($rs[$k]))
127             $rs[$k] = $v;
128     }
129
130     foreach ($_IC_VALID_VALUE as $item) {
131         if (defined($item)) continue;
132         if (array_key_exists($item, $rs)) {
133             define($item, $rs[$item]);
134         //} elseif (array_key_exists($item, $rsdef)) {
135         //    define($item, $rsdef[$item]);
136         // calculate them later or not at all:
137         } elseif (in_array($item,
138                            array('DATABASE_PREFIX', 'SERVER_NAME', 'SERVER_PORT',
139                                  'SCRIPT_NAME', 'DATA_PATH', 'PHPWIKI_DIR', 'VIRTUAL_PATH',
140                                  'LDAP_AUTH_HOST','IMAP_AUTH_HOST','POP3_AUTH_HOST'))) 
141         {
142             ;
143         } else {
144             trigger_error(sprintf("missing config setting for %s",$item));
145         }
146     }
147
148     // Boolean options are slightly special - if they're set to any of
149     // '', 'false', '0', or 'no' (all case-insensitive) then the value will
150     // be a boolean false, otherwise if there is anything set it'll
151     // be true.
152     foreach ($_IC_VALID_BOOL as $item) {
153         if (defined($item)) continue;
154         if (array_key_exists($item, $rs)) {
155             $val = $rs[$item];
156         //} elseif (array_key_exists($item, $rsdef)) {
157         //    $val = $rsdef[$item];
158         } else {
159             $val = false; //trigger_error(sprintf("missing boolean config setting for %s",$item));
160         }
161         
162         // calculate them later: old or dynamic constants
163         if (!array_key_exists($item, $rs) and
164             in_array($item,array('USE_PATH_INFO', 'USE_DB_SESSION',
165                                  'ALLOW_HTTP_AUTH_LOGIN', 'ALLOW_LDAP_LOGIN',
166                                  'ALLOW_IMAP_LOGIN', 'ALLOW_USER_LOGIN',
167                                  'REQUIRE_SIGNIN_BEFORE_EDIT',
168                                  'WIKIDB_NOCACHE_MARKUP')))
169         {
170             ;
171         }
172         elseif (!$val) {
173             define($item, false);
174         }
175         elseif (strtolower($val) == 'false' ||
176                 strtolower($val) == 'no' ||
177                 $val == '' ||
178                 $val == false ||
179                 $val == '0') {
180             define($item, false);
181         }
182         else {
183             define($item, true);
184         }
185     }
186
187     // Special handling for some config options
188     if (!empty($rs['INCLUDE_PATH'])) {
189         ini_set('include_path', $rs['INCLUDE_PATH']);
190     }
191     if (!empty($rs['SESSION_SAVE_PATH'])) {
192         ini_set('session.save_path', $rs['SESSION_SAVE_PATH']);
193     }
194
195     // Database
196     global $DBParams;
197     $DBParams['dbtype'] = @$rs['DATABASE_TYPE'];
198     if (isset($rs['DATABASE_DSN']))
199         $DBParams['dsn'] = $rs['DATABASE_DSN'];
200     if (isset($rs['DATABASE_PREFIX']))
201         $DBParams['prefix'] = $rs['DATABASE_PREFIX'];
202     $DBParams['db_session_table'] = @$rs['DATABASE_SESSION_TABLE'];
203     $DBParams['dba_handler'] = @$rs['DATABASE_DBA_HANDLER'];
204     $DBParams['directory'] = @$rs['DATABASE_DIRECTORY'];
205     $DBParams['timeout'] = @$rs['DATABASE_TIMEOUT'];
206     if (!defined('USE_DB_SESSION') and $DBParams['db_session_table'] and 
207         in_array($DBParams['dbtype'],array('SQL','ADODB'/*,'dba'*/))) {
208         define('USE_DB_SESSION', true);
209     }
210
211     // Expiry stuff
212     global $ExpireParams;
213     foreach (array('major','minor','author') as $major) {
214         foreach (array('max_age','min_age','min_keep','keep','max_keep') as $max) {
215             $item = strtoupper($major) . '_'. strtoupper($max);
216             if (defined($item)) $val = constant($item);
217             elseif (array_key_exists($item, $rs))
218                 $val = $rs[$item];
219             elseif (array_key_exists($item, $rsdef))
220                 $val = $rsdef[$item];
221             if (!isset($ExpireParams[$major]))
222                 $ExpireParams[$major] = array();
223             $ExpireParams[$major][$max] = $val;
224         }
225     }
226
227     // User authentication
228     if (!isset($GLOBALS['USER_AUTH_ORDER']))
229         if (isset($rs['USER_AUTH_ORDER']))
230             $GLOBALS['USER_AUTH_ORDER'] = preg_split('/\s*:\s*/', 
231                                                      $rs['USER_AUTH_ORDER']);
232         else 
233             $GLOBALS['USER_AUTH_ORDER'] = array("PersonalPage");
234
235     // LDAP bind options
236     global $LDAP_SET_OPTION;
237     if (defined('LDAP_SET_OPTION') and LDAP_SET_OPTION) {
238         $optlist = preg_split('/\s*:\s*/', LDAP_SET_OPTION);
239         foreach ($optlist as $opt) {
240             $bits = preg_split('/\s*=\s*/', $opt, 2);
241             if (count($bits) == 2) {
242                 if (is_string($bits[0]) and defined($bits[0]))
243                     $bits[0] = constant($bits[0]);
244                 $LDAP_SET_OPTION[$bits[0]] = $bits[1];
245             }
246             else {
247                 // Possibly throw some sort of error?
248             }
249         }
250     }
251
252     // Now it's the external DB authentication stuff's turn
253     if (in_array('Db', $GLOBALS['USER_AUTH_ORDER']) && empty($rs['DBAUTH_AUTH_DSN'])) {
254         $rs['DBAUTH_AUTH_DSN'] = $DBParams['dsn'];
255     }
256     
257     global $DBAuthParams;
258     $DBAP_MAP = array('DBAUTH_AUTH_DSN' => 'auth_dsn',
259                       'DBAUTH_AUTH_CHECK' => 'auth_check',
260                       'DBAUTH_AUTH_USER_EXISTS' => 'auth_user_exists',
261                       'DBAUTH_AUTH_CRYPT_METHOD' => 'auth_crypt_method',
262                       'DBAUTH_AUTH_UPDATE' => 'auth_update',
263                       'DBAUTH_AUTH_CREATE' => 'auth_create',
264                       'DBAUTH_PREF_SELECT' => 'pref_select',
265                       'DBAUTH_PREF_UPDATE' => 'pref_update',
266                       'DBAUTH_IS_MEMBER' => 'is_member',
267                       'DBAUTH_GROUP_MEMBERS' => 'group_members',
268                       'DBAUTH_USER_GROUPS' => 'user_groups'
269                       );
270     foreach ($DBAP_MAP as $rskey => $apkey) {
271         if (isset($rs[$rskey])) {
272             $DBAuthParams[$apkey] = $rs[$rskey];
273         } elseif (isset($rsdef[$rskey])) {
274             $DBAuthParams[$apkey] = $rsdef[$rskey];
275         }
276     }
277
278     // optional values will be set to '' to simplify the logic.
279     foreach ($_IC_OPTIONAL_VALUE as $item) {
280         if (defined($item)) continue;
281         if (array_key_exists($item, $rs)) {
282             define($item, $rs[$item]);
283         } else 
284             define($item, '');
285     }
286
287     // Default Wiki pages to force loading from pgsrc
288     global $GenericPages;
289     $GenericPages = preg_split('/\s*:\s*/', @$rs['DEFAULT_WIKI_PAGES']);
290
291     // Wiki name regexp:  Should be a define(), but might needed to be changed at runtime
292     // (different LC_CHAR need different posix classes)
293     global $WikiNameRegexp;
294     $WikiNameRegexp = constant('WIKI_NAME_REGEXP');
295     if (!trim($WikiNameRegexp))
296        $WikiNameRegexp = '(?<![[:alnum:]])(?:[[:upper:]][[:lower:]]+){2,}(?![[:alnum:]])';
297
298     // Another "too-tricky" redefine
299     global $KeywordLinkRegexp;
300     if (!isset($rs['KEYWORDS'])) $rs['KEYWORDS'] = "Category:Topic";
301     $keywords = preg_split('/\s*:\s*/', $rs['KEYWORDS']);
302     if (empty($keywords)) $keywords = array("Category","Topic");
303     $KeywordLinkRegexp = '(?<=' . implode('|^', $keywords) . ')[[:upper:]].*$';
304         
305     global $DisabledActions;
306     if (!array_key_exists('DISABLED_ACTIONS',$rs) and array_key_exists('DISABLED_ACTIONS',$rsdef))
307         $rs['DISABLED_ACTIONS'] = @$rsdef['DISABLED_ACTIONS'];
308     if (array_key_exists('DISABLED_ACTIONS',$rs))
309         $DisabledActions = preg_split('/\s*:\s*/', $rs['DISABLED_ACTIONS']);
310     
311     /*global $AllowedProtocols, $InlineImages;
312     $AllowedProtocols = constant("ALLOWED_PROTOCOLS");
313     $InlineImages = constant("INLINE_IMAGES");*/
314
315     global $PLUGIN_CACHED_IMGTYPES;
316     $PLUGIN_CACHED_IMGTYPES = preg_split('/\s*[|:]\s*/', PLUGIN_CACHED_IMGTYPES);
317     if (!defined('PLUGIN_CACHED_CACHE_DIR')) {
318         if (!FindFile('/tmp/cache', 1)) {
319             if (!FindFile('/tmp', 1)) {
320                 mkdir('/tmp', 777);
321             }
322             mkdir('/tmp/cache', 777);
323         }
324         // will throw an error if not exists.
325         define('PLUGIN_CACHED_CACHE_DIR', FindFile('/tmp/cache',false,1)); 
326     } else {
327         // will throw an error if not exists.
328         FindFile(PLUGIN_CACHED_CACHE_DIR);
329     }
330
331     fix_configs();
332 }
333
334 // moved from lib/config.php
335 function fix_configs() {
336     global $FieldSeparator, $charset, $WikiNameRegexp, $KeywordLinkRegexp, $AllActionPages;
337     global $HTTP_SERVER_VARS, $DBParams, $LANG;
338
339     // init FileFinder to add proper include paths
340     require_once(dirname(__FILE__)."/FileFinder.php");
341     FindFile("lib/interwiki.map",true);
342     
343     // "\x80"-"\x9f" (and "\x00" - "\x1f") are non-printing control
344     // chars in iso-8859-*
345     // $FieldSeparator = "\263"; // this is a superscript 3 in ISO-8859-1.
346     // $FieldSeparator = "\xFF"; // this byte should never appear in utf-8
347     // FIXME: get rid of constant. pref is dynamic and language specific
348     $charset = CHARSET;
349     // Disabled: Let the admin decide which charset.
350     //if (isset($LANG) and in_array($LANG,array('zh')))
351     //    $charset = 'utf-8';
352     if (strtolower($charset) == 'utf-8')
353         $FieldSeparator = "\xFF";
354     else
355         $FieldSeparator = "\x81";
356
357     if (!defined('DEFAULT_LANGUAGE'))
358         define('DEFAULT_LANGUAGE', 'en');
359     update_locale(isset($LANG) ? $LANG : DEFAULT_LANGUAGE);
360
361     // Set up (possibly fake) gettext()
362     //
363     if (!function_exists ('bindtextdomain')) {
364         $locale = array();
365
366         function gettext ($text) { 
367             global $locale;
368             if (!empty ($locale[$text]))
369                 return $locale[$text];
370             return $text;
371         }
372
373         function _ ($text) {
374             return gettext($text);
375         }
376     }
377     else {
378         // Working around really weird gettext problems: (4.3.2, 4.3.6 win)
379         // bindtextdomain() returns the current domain path.
380         // 1. If the script is not index.php but something like "de", on a different path
381         //    then bindtextdomain() fails, but after chdir to the correct path it will work okay.
382         // 2. But the weird error "Undefined variable: bindtextdomain" is generated then.
383         $bindtextdomain_path = FindFile("locale", false, true);
384         if (isWindows())
385             $bindtextdomain_path = str_replace("/","\\",$bindtextdomain_path);
386         $bindtextdomain_real = @bindtextdomain("phpwiki", $bindtextdomain);
387         if ($bindtextdomain_real != $bindtextdomain_path) {
388             // this will happen with virtual_paths. chdir and try again.
389             chdir($bindtextdomain_path);
390             $bindtextdomain_real = @bindtextdomain("phpwiki", $bindtextdomain);
391         }
392         textdomain("phpwiki");
393         if ($bindtextdomain_real != $bindtextdomain_path) { // change back
394             chdir($bindtextdomain_real . (isWindows() ? "\\.." : "/.."));
395         }
396     }
397
398     $WikiNameRegexp = pcre_fix_posix_classes($WikiNameRegexp);
399     $KeywordLinkRegexp = pcre_fix_posix_classes($KeywordLinkRegexp);
400
401     $AllActionPages = explode(':',
402                               'AllPages:BackLinks:CreatePage:DebugInfo:EditMetaData:FindPage:'
403                               .'FullRecentChanges:FullTextSearch:FuzzyPages:InterWikiSearch:'
404                               .'LikePages:MostPopular:'
405                               .'OrphanedPages:PageDump:PageHistory:PageInfo:RandomPage:RateIt:'
406                               .'RecentChanges:RecentEdits:RecentComments:RelatedChanges:TitleSearch:'
407                               .'TranslateText:UpLoad:UserPreferences:WantedPages:WhoIsOnline:'
408                               .'PhpWikiAdministration/Remove:PhpWikiAdministration/Chmod:'
409                               .'PhpWikiAdministration/Rename:PhpWikiAdministration/Replace:'
410                               .'PhpWikiAdministration/SetAcl:PhpWikiAdministration/Chown'
411                               );
412
413     //////////////////////////////////////////////////////////////////
414     // Autodetect URL settings:
415     //
416     if (!defined('SERVER_NAME')) define('SERVER_NAME', $HTTP_SERVER_VARS['SERVER_NAME']);
417     if (!defined('SERVER_PORT')) define('SERVER_PORT', $HTTP_SERVER_VARS['SERVER_PORT']);
418     if (!defined('SERVER_PROTOCOL')) {
419         if (empty($HTTP_SERVER_VARS['HTTPS']) || $HTTP_SERVER_VARS['HTTPS'] == 'off')
420             define('SERVER_PROTOCOL', 'http');
421         else
422             define('SERVER_PROTOCOL', 'https');
423     }
424
425     if (!defined('SCRIPT_NAME'))
426         define('SCRIPT_NAME', deduce_script_name());
427
428     if (!defined('USE_PATH_INFO')) {
429         if (isCGI())
430             define('USE_PATH_INFO', false);
431         else {
432             /*
433              * If SCRIPT_NAME does not look like php source file,
434              * or user cgi we assume that php is getting run by an
435              * action handler in /cgi-bin.  In this case,
436              * I think there is no way to get Apache to pass
437              * useful PATH_INFO to the php script (PATH_INFO
438              * is used to the the php interpreter where the
439              * php script is...)
440              */
441             switch (php_sapi_name()) {
442             case 'apache':
443             case 'apache2handler':
444                 define('USE_PATH_INFO', true);
445                 break;
446             case 'cgi':
447             case 'apache2filter':
448                 define('USE_PATH_INFO', false);
449                 break;
450             default:
451                 define('USE_PATH_INFO', ereg('\.(php3?|cgi)$', SCRIPT_NAME));
452                 break;
453             }
454         }
455     }
456      
457     // If user has not defined PHPWIKI_DIR, and we need it
458     if (!defined('PHPWIKI_DIR') and !file_exists("themes/default")) {
459         $themes_dir = FindFile("themes");
460         define('PHPWIKI_DIR', dirname($themes_dir));
461     }
462         
463     if (!defined('VIRTUAL_PATH')) {
464         // We'd like to auto-detect when the cases where apaches
465         // 'Action' directive (or similar means) is used to
466         // redirect page requests to a cgi-handler.
467         //
468         // In cases like this, requests for e.g. /wiki/HomePage
469         // get redirected to a cgi-script called, say,
470         // /path/to/wiki/index.php.  The script gets all
471         // of /wiki/HomePage as it's PATH_INFO.
472         //
473         // The problem is:
474         //   How to detect when this has happened reliably?
475         //   How to pick out the "virtual path" (in this case '/wiki')?
476         //
477         // (Another time an redirect might occur is to a DirectoryIndex
478         // -- the requested URI is '/wikidir/', the request gets
479         // passed to '/wikidir/index.php'.  In this case, the
480         // proper VIRTUAL_PATH is '/wikidir/index.php', since the
481         // pages will appear at e.g. '/wikidir/index.php/HomePage'.
482         //
483
484         $REDIRECT_URL = &$HTTP_SERVER_VARS['REDIRECT_URL'];
485         if (USE_PATH_INFO and isset($REDIRECT_URL)
486             and ! IsProbablyRedirectToIndex()) {
487             // FIXME: This is a hack, and won't work if the requested
488             // pagename has a slash in it.
489             $temp = strtr(dirname($REDIRECT_URL . 'x'),"\\",'/');
490             if ( ($temp == '/') || ($temp == '\\') )
491                 $temp = '';
492             define('VIRTUAL_PATH', $temp);
493         } else {
494             define('VIRTUAL_PATH', SCRIPT_NAME);
495         }
496     }
497
498     // If user has not defined DATA_PATH, we want to use relative URLs.
499     if (!defined('DATA_PATH')) {
500         // fix similar to the one suggested by jkalmbach for 
501         // installations in the webrootdir, like "http://phpwiki.org/HomePage"
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     if (SERVER_PORT
513         && SERVER_PORT != (SERVER_PROTOCOL == 'https' ? 443 : 80)) {
514         define('SERVER_URL',
515                SERVER_PROTOCOL . '://' . SERVER_NAME . ':' . SERVER_PORT);
516     }
517     else {
518         define('SERVER_URL',
519                SERVER_PROTOCOL . '://' . SERVER_NAME);
520     }
521
522     if (VIRTUAL_PATH != SCRIPT_NAME) {
523         // Apache action handlers are used.
524         define('PATH_INFO_PREFIX', VIRTUAL_PATH . '/');
525     }
526     else
527         define('PATH_INFO_PREFIX', '/');
528
529     define('PHPWIKI_BASE_URL',
530            SERVER_URL . (USE_PATH_INFO ? VIRTUAL_PATH . '/' : SCRIPT_NAME));
531
532     // Detect PrettyWiki setup (not loading index.php directly)
533     // $SCRIPT_FILENAME should be the same as __FILE__ in index.php
534     if (!isset($SCRIPT_FILENAME))
535         $SCRIPT_FILENAME = @$HTTP_SERVER_VARS['SCRIPT_FILENAME'];
536     if (!isset($SCRIPT_FILENAME))
537         $SCRIPT_FILENAME = @$HTTP_ENV_VARS['SCRIPT_FILENAME'];
538     if (!isset($SCRIPT_FILENAME))
539         $SCRIPT_FILENAME = dirname(__FILE__.'/../') . '/index.php';
540     if (isWindows())
541         $SCRIPT_FILENAME = strtr($SCRIPT_FILENAME,'/','\\');
542     define('SCRIPT_FILENAME',$SCRIPT_FILENAME);
543
544     //////////////////////////////////////////////////////////////////
545     // Select database
546     //
547     if (empty($DBParams['dbtype']))
548         $DBParams['dbtype'] = 'dba';
549
550     if (!defined('THEME'))
551         define('THEME', 'default');
552
553     if (!defined('WIKI_NAME'))
554         define('WIKI_NAME', _("An unnamed PhpWiki"));
555
556     if (!defined('HOME_PAGE'))
557         define('HOME_PAGE', _("HomePage"));
558
559     // FIXME: delete
560     // Access log
561     if (!defined('ACCESS_LOG'))
562         define('ACCESS_LOG', '');
563
564     // FIXME: delete
565     // Get remote host name, if apache hasn't done it for us
566     if (empty($HTTP_SERVER_VARS['REMOTE_HOST']) && ENABLE_REVERSE_DNS)
567         $HTTP_SERVER_VARS['REMOTE_HOST'] = gethostbyaddr($HTTP_SERVER_VARS['REMOTE_ADDR']);
568
569     // check whether the crypt() function is needed and present
570     if (defined('ENCRYPTED_PASSWD') && !function_exists('crypt')) {
571         $error = sprintf(_("Encrypted passwords cannot be used: %s."),
572                          "'function crypt()' not available in this version of php");
573         trigger_error($error);
574     }
575
576     if (!defined('ADMIN_PASSWD') or ADMIN_PASSWD == '')
577         trigger_error(_("The admin password cannot be empty. Please update your config/config.ini"));
578
579     if (defined('USE_DB_SESSION') and USE_DB_SESSION) {
580         if (! $DBParams['db_session_table'] ) {
581             trigger_error(_("Empty db_session_table. Turn USE_DB_SESSION off or define the table name."), 
582                           E_USER_ERROR);
583             // this is flawed. constants cannot be changed.
584             define('USE_DB_SESSION',false);
585             $DBParams['db_session_table'] = @$DBParams['prefix'] . 'session';
586         }
587     } else {
588         // default: true (since v1.3.8)
589         if (!defined('USE_DB_SESSION'))
590             define('USE_DB_SESSION',true);
591     }
592     // legacy:
593     if (!defined('ENABLE_USER_NEW')) define('ENABLE_USER_NEW',true);
594     if (!defined('ALLOW_USER_LOGIN'))
595         define('ALLOW_USER_LOGIN', defined('ALLOW_USER_PASSWORDS') && ALLOW_USER_PASSWORDS);
596     if (!defined('ALLOW_ANON_USER')) define('ALLOW_ANON_USER', true); 
597     if (!defined('ALLOW_ANON_EDIT')) define('ALLOW_ANON_EDIT', false); 
598     if (!defined('REQUIRE_SIGNIN_BEFORE_EDIT')) define('REQUIRE_SIGNIN_BEFORE_EDIT', ! ALLOW_ANON_EDIT);
599     if (!defined('ALLOW_BOGO_LOGIN')) define('ALLOW_BOGO_LOGIN', true);
600     if (!defined('ALLOW_LDAP_LOGIN')) define('ALLOW_LDAP_LOGIN', defined('LDAP_AUTH_HOST'));
601     if (!defined('ALLOW_IMAP_LOGIN')) define('ALLOW_IMAP_LOGIN', defined('IMAP_AUTH_HOST'));
602
603     if (ALLOW_USER_LOGIN and !empty($DBAuthParams) and empty($DBAuthParams['auth_dsn'])) {
604         if (isset($DBParams['dsn']))
605             $DBAuthParams['auth_dsn'] = $DBParams['dsn'];
606     }
607 }
608
609 // $Log: not supported by cvs2svn $
610 // Revision 1.40  2004/06/22 07:12:48  rurban
611 // removed USE_TAGLINES constant
612 //
613 // Revision 1.39  2004/06/21 16:22:28  rurban
614 // add DEFAULT_DUMP_DIR and HTML_DUMP_DIR constants, for easier cmdline dumps,
615 // fixed dumping buttons locally (images/buttons/),
616 // support pages arg for dumphtml,
617 // optional directory arg for dumpserial + dumphtml,
618 // fix a AllPages warning,
619 // show dump warnings/errors on DEBUG,
620 // don't warn just ignore on wikilens pagelist columns, if not loaded.
621 // RateIt pagelist column is called "rating", not "ratingwidget" (Dan?)
622 //
623 // Revision 1.38  2004/06/21 08:39:36  rurban
624 // pear/Cache update from Cache-1.5.4 (added db and trifile container)
625 // pear/DB update from DB-1.6.1 (mysql bugfixes, php5 compat, DB_PORTABILITY features)
626 //
627 // Revision 1.37  2004/06/19 12:32:37  rurban
628 // new TEMP_DIR for ziplib
629 //
630 // Revision 1.36  2004/06/19 10:06:37  rurban
631 // Moved lib/plugincache-config.php to config/*.ini
632 // use PLUGIN_CACHED_* constants instead of global $CacheParams
633 //
634 // Revision 1.35  2004/06/15 09:15:52  rurban
635 // IMPORTANT: fixed passwd handling for passwords stored in prefs:
636 //   fix encrypted usage, actually store and retrieve them from db
637 //   fix bogologin with passwd set.
638 // fix php crashes with call-time pass-by-reference (references wrongly used
639 //   in declaration AND call). This affected mainly Apache2 and IIS.
640 //   (Thanks to John Cole to detect this!)
641 //
642 // Revision 1.34  2004/06/13 13:54:25  rurban
643 // Catch fatals on the four dump calls (as file and zip, as html and mimified)
644 // FoafViewer: Check against external requirements, instead of fatal.
645 // Change output for xhtmldumps: using file:// urls to the local fs.
646 // Catch SOAP fatal by checking for GOOGLE_LICENSE_KEY
647 // Import GOOGLE_LICENSE_KEY and FORTUNE_DIR from config.ini.
648 //
649 // Revision 1.33  2004/06/08 19:48:16  rurban
650 // fixed foreign setup: no ugly skipped msg for the GenericPages, load english actionpages if translated not found
651 //
652 // Revision 1.32  2004/06/08 10:54:46  rurban
653 // better acl dump representation, read back acl and owner
654 //
655 // Revision 1.31  2004/06/06 16:58:51  rurban
656 // added more required ActionPages for foreign languages
657 // install now english ActionPages if no localized are found. (again)
658 // fixed default anon user level to be 0, instead of -1
659 //   (wrong "required administrator to view this page"...)
660 //
661 // Revision 1.30  2004/06/04 12:40:21  rurban
662 // Restrict valid usernames to prevent from attacks against external auth or compromise
663 // possible holes.
664 // Fix various WikiUser old issues with default IMAP,LDAP,POP3 configs. Removed these.
665 // Fxied more warnings
666 //
667 // Revision 1.29  2004/06/04 11:58:38  rurban
668 // added USE_TAGLINES
669 //
670 // Revision 1.28  2004/06/03 20:42:49  rurban
671 // fixed bad warning #964850
672 //
673 // Revision 1.27  2004/06/03 10:18:19  rurban
674 // fix FileUser locking issues, new config ENABLE_PAGEPERM
675 //
676 // Revision 1.26  2004/06/02 18:01:45  rurban
677 // init global FileFinder to add proper include paths at startup
678 //   adds PHPWIKI_DIR if started from another dir, lib/pear also
679 // fix slashify for Windows
680 // fix USER_AUTH_POLICY=old, use only USER_AUTH_ORDER methods (besides HttpAuth)
681 //
682 // Revision 1.25  2004/05/27 17:49:05  rurban
683 // renamed DB_Session to DbSession (in CVS also)
684 // added WikiDB->getParam and WikiDB->getAuthParam method to get rid of globals
685 // remove leading slash in error message
686 // added force_unlock parameter to File_Passwd (no return on stale locks)
687 // fixed adodb session AffectedRows
688 // added FileFinder helpers to unify local filenames and DATA_PATH names
689 // editpage.php: new edit toolbar javascript on ENABLE_EDIT_TOOLBAR
690 //
691 // Revision 1.24  2004/05/18 13:33:13  rurban
692 // we already have a CGI function
693 //
694 // Revision 1.23  2004/05/17 17:43:29  rurban
695 // CGI: no PATH_INFO fix
696 //
697 // Revision 1.22  2004/05/16 22:07:35  rurban
698 // check more config-default and predefined constants
699 // various PagePerm fixes:
700 //   fix default PagePerms, esp. edit and view for Bogo and Password users
701 //   implemented Creator and Owner
702 //   BOGOUSERS renamed to BOGOUSER
703 // fixed syntax errors in signin.tmpl
704 //
705 // Revision 1.21  2004/05/08 22:55:12  rurban
706 // Fixed longstanding sf.net:demo problem. endless loop, caused by an empty definition of
707 // WIKI_NAME_REGEXP. Exactly this constant wasn't checked for its default setting.
708 //
709 // Revision 1.20  2004/05/08 20:21:00  rurban
710 // remove php tags in Log
711 //
712 // Revision 1.19  2004/05/08 19:55:29  rurban
713 // support <span>inlined plugin-result</span>:
714 //   if the plugin is parsed inside a line, use <span> instead of
715 //   <div tightenable top bottom>
716 //   e.g. for "This is the current Phpwiki <plugin SystemInfo version> version.
717 //
718 // Revision 1.18  2004/05/08 16:58:19  rurban
719 // don't ignore some false config values (e.g. USE_PATH_INFO false was ignored)
720 //
721 // Revision 1.17  2004/05/06 19:26:15  rurban
722 // improve stability, trying to find the InlineParser endless loop on sf.net
723 //
724 // remove end-of-zip comments to fix sf.net bug #777278 and probably #859628
725 //
726 // Revision 1.16  2004/05/02 15:10:05  rurban
727 // new finally reliable way to detect if /index.php is called directly
728 //   and if to include lib/main.php
729 // new global AllActionPages
730 // SetupWiki now loads all mandatory pages: HOME_PAGE, action pages, and warns if not.
731 // WikiTranslation what=buttons for Carsten to create the missing MacOSX buttons
732 // PageGroupTestOne => subpages
733 // renamed PhpWikiRss to PhpWikiRecentChanges
734 // more docs, default configs, ...
735 //
736 // Revision 1.15  2004/05/01 15:59:29  rurban
737 // more php-4.0.6 compatibility: superglobals
738 //
739 // Revision 1.14  2004/04/29 23:25:12  rurban
740 // re-ordered locale init (as in 1.3.9)
741 // fixed loadfile with subpages, and merge/restore anyway
742 //   (sf.net bug #844188)
743 //
744 // Revision 1.13  2004/04/29 21:54:05  rurban
745 // typo
746 //
747 // Revision 1.12  2004/04/27 16:16:27  rurban
748 // more subtle config problems with defaults
749 //
750 // Revision 1.11  2004/04/26 20:44:34  rurban
751 // locking table specific for better databases
752 //
753 // Revision 1.10  2004/04/26 13:22:32  rurban
754 // calculate bool old or dynamic constants later
755 //
756 // Revision 1.9  2004/04/26 12:15:01  rurban
757 // check default config values
758 //
759 // Revision 1.8  2004/04/23 16:55:59  zorloc
760 // If using Db auth and DBAUTH_AUTH_DSN is empty set DBAUTH_AUTH_DSN to $DBParams['dsn']
761 //
762 // Revision 1.7  2004/04/20 22:26:27  zorloc
763 // Removed Pear_Config for parse_ini_file().
764 //
765 // Revision 1.6  2004/04/20 18:10:27  rurban
766 // config refactoring:
767 //   FileFinder is needed for WikiFarm scripts calling index.php
768 //   config run-time calls moved to lib/IniConfig.php:fix_configs()
769 //   added PHPWIKI_DIR smart-detection code (Theme finder)
770 //   moved FileFind to lib/FileFinder.php
771 //   cleaned lib/config.php
772 //
773 // Revision 1.5  2004/04/20 17:21:57  rurban
774 // WikiFarm code: honor predefined constants
775 //
776 // Revision 1.4  2004/04/20 17:08:19  rurban
777 // Some IniConfig fixes: prepend our private lib/pear dir
778 //   switch from " to ' in the auth statements
779 //   use error handling.
780 // WikiUserNew changes for the new "'$variable'" syntax
781 //   in the statements
782 // TODO: optimization to put config vars into the session.
783 //
784
785 // (c-file-style: "gnu")
786 // Local Variables:
787 // mode: php
788 // tab-width: 8
789 // c-basic-offset: 4
790 // c-hanging-comment-ender-p: nil
791 // indent-tabs-mode: nil
792 // End:   
793 ?>