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