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