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