]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/config.php
new DEBUG flag: _DEBUG_LOGIN (64)
[SourceForge/phpwiki.git] / lib / config.php
1 <?php
2 rcs_id('$Id: config.php,v 1.123 2004-11-05 21:03:27 rurban Exp $');
3 /*
4  * NOTE: The settings here should probably not need to be changed.
5  * The user-configurable settings have been moved to IniConfig.php
6  * The run-time code has been moved to lib/IniConfig.php:fix_configs()
7  */
8  
9 if (!defined("LC_ALL")) {
10     // Backward compatibility (for PHP < 4.0.5)
11     if (!check_php_version(4,0,5)) {
12         define("LC_ALL",   "LC_ALL");
13         define("LC_CTYPE", "LC_CTYPE");
14     } else {
15         define("LC_ALL",   0);
16         define("LC_CTYPE", 2);
17     }
18 }
19 // debug flags: 
20 define ('_DEBUG_VERBOSE',   1); // verbose msgs and add validator links on footer
21 define ('_DEBUG_PAGELINKS', 2); // list the extraced pagelinks at the top of each pages
22 define ('_DEBUG_PARSER',    4); // verbose parsing steps
23 define ('_DEBUG_TRACE',     8); // test php memory usage, prints php debug backtraces
24 define ('_DEBUG_INFO',     16);
25 define ('_DEBUG_APD',      32);
26 define ('_DEBUG_LOGIN',    64); // verbose login debug-msg (settings and reason for failure)
27
28 function isCGI() {
29     return (substr(php_sapi_name(),0,3) == 'cgi' and 
30             isset($GLOBALS['HTTP_ENV_VARS']['GATEWAY_INTERFACE']) and
31             @preg_match('/CGI/',$GLOBALS['HTTP_ENV_VARS']['GATEWAY_INTERFACE']));
32 }
33
34 /*
35 // copy some $_ENV vars to $_SERVER for CGI compatibility. php does it automatically since when?
36 if (isCGI()) {
37     foreach (explode(':','SERVER_SOFTWARE:SERVER_NAME:GATEWAY_INTERFACE:SERVER_PROTOCOL:SERVER_PORT:REQUEST_METHOD:HTTP_ACCEPT:PATH_INFO:PATH_TRANSLATED:SCRIPT_NAME:QUERY_STRING:REMOTE_HOST:REMOTE_ADDR:REMOTE_USER:AUTH_TYPE:CONTENT_TYPE:CONTENT_LENGTH') as $key) {
38         $GLOBALS['HTTP_SERVER_VARS'][$key] = &$GLOBALS['HTTP_ENV_VARS'][$key];
39     }
40 }
41 */
42
43 // essential internal stuff
44 set_magic_quotes_runtime(0);
45
46 /** 
47  * Browser Detection Functions
48  *
49  * Current Issues:
50  *  NS/IE < 4.0 doesn't accept < ? xml version="1.0" ? >
51  *  NS/IE < 4.0 cannot display PNG
52  *  NS/IE < 4.0 cannot display all XHTML tags
53  *  NS < 5.0 needs textarea wrap=virtual
54  *  IE55 has problems with transparent PNG's
55  * @author: ReiniUrban
56  */
57 function browserAgent() {
58     static $HTTP_USER_AGENT = false;
59     if (!$HTTP_USER_AGENT)
60         $HTTP_USER_AGENT = @$GLOBALS['HTTP_SERVER_VARS']['HTTP_USER_AGENT'];
61     if (!$HTTP_USER_AGENT) // CGI
62         $HTTP_USER_AGENT = $GLOBALS['HTTP_ENV_VARS']['HTTP_USER_AGENT'];
63     return $HTTP_USER_AGENT;
64 }
65 function browserDetect($match) {
66     return strstr(browserAgent(), $match);
67 }
68 // returns a similar number for Netscape/Mozilla (gecko=5.0)/IE/Opera features.
69 function browserVersion() {
70     if (strstr(browserAgent(),    "Mozilla/4.0 (compatible; MSIE"))
71         return (float) substr(browserAgent(),30);
72     elseif (strstr(browserAgent(),"Mozilla/5.0 (compatible; Konqueror/"))
73         return (float) substr(browserAgent(),36);
74     else
75         return (float) substr(browserAgent(),8);
76 }
77 function isBrowserIE() {
78     return (browserDetect('Mozilla/') and 
79             browserDetect('MSIE'));
80 }
81 // problem with transparent PNG's
82 function isBrowserIE55() {
83     return (isBrowserIE() and 
84             browserVersion() > 5.1 and browserVersion() < 6.0);
85 }
86 // old Netscape prior to Mozilla
87 function isBrowserNetscape($version = false) {
88     $agent = (browserDetect('Mozilla/') and 
89             ! browserDetect('Gecko/') and
90             ! browserDetect('MSIE'));
91     if ($version) return $agent and browserVersion() >= $version; 
92     else return $agent;
93 }
94 // NS3 or less
95 function isBrowserNS3() {
96     return (isBrowserNetscape() and browserVersion() < 4.0);
97 }
98 // NS4 or less
99 function isBrowserNS4() {
100     return (isBrowserNetscape() and browserVersion() < 5.0);
101 }
102 // must omit display alternate stylesheets: konqueror 3.1.4
103 // http://sourceforge.net/tracker/index.php?func=detail&aid=945154&group_id=6121&atid=106121
104 function isBrowserKonqueror($version = false) {
105     if ($version) return browserDetect('Konqueror/') and browserVersion() >= $version; 
106     return browserDetect('Konqueror/');
107 }
108
109 /**
110  * Smart? setlocale().
111  *
112  * This is a version of the builtin setlocale() which is
113  * smart enough to try some alternatives...
114  *
115  * @param mixed $category
116  * @param string $locale
117  * @return string The new locale, or <code>false</code> if unable
118  *  to set the requested locale.
119  * @see setlocale
120  */
121 function guessing_setlocale ($category, $locale) {
122     if ($res = setlocale($category, $locale))
123         return $res;
124     $alt = array('en' => array('C', 'en_US', 'en_GB', 'en_AU', 'en_CA', 'english'),
125                  'de' => array('de_DE', 'de_DE', 'de_DE@euro', 
126                                'de_AT@euro', 'de_AT', 'German_Austria.1252', 'deutsch', 
127                                'german', 'ge'),
128                  'es' => array('es_ES', 'es_MX', 'es_AR', 'spanish'),
129                  'nl' => array('nl_NL', 'dutch'),
130                  'fr' => array('fr_FR', 'français', 'french'),
131                  'it' => array('it_IT'),
132                  'sv' => array('sv_SE'),
133                  'ja' => array('ja_JP','ja_JP.eucJP','japanese.euc'),
134                  'zh' => array('zh_TW', 'zh_CN'),
135                  );
136     if (strlen($locale) == 2)
137         $lang = $locale;
138     else 
139         list ($lang) = split('_', $locale);
140     if (!isset($alt[$lang]))
141         return false;
142         
143     foreach ($alt[$lang] as $try) {
144         if ($res = setlocale($category, $try))
145             return $res;
146         // Try with charset appended...
147         $try = $try . '.' . $GLOBALS['charset'];
148         if ($res = setlocale($category, $try))
149             return $res;
150         foreach (array('@', ".", '_') as $sep) {
151             list ($try) = split($sep, $try);
152             if ($res = setlocale($category, $try))
153                 return $res;
154         }
155     }
156     return false;
157
158     // A standard locale name is typically of  the  form
159     // language[_territory][.codeset][@modifier],  where  language is
160     // an ISO 639 language code, territory is an ISO 3166 country code,
161     // and codeset  is  a  character  set or encoding identifier like
162     // ISO-8859-1 or UTF-8.
163 }
164
165 function update_locale($loc) {
166     //require_once(dirname(__FILE__)."/FileFinder.php");
167     $newlocale = guessing_setlocale(LC_ALL, $loc);
168     if (!$newlocale) {
169         //trigger_error(sprintf(_("Can't setlocale(LC_ALL,'%s')"), $loc), E_USER_NOTICE);
170         // => LC_COLLATE=C;LC_CTYPE=German_Austria.1252;LC_MONETARY=C;LC_NUMERIC=C;LC_TIME=C
171         //$loc = setlocale(LC_CTYPE, '');  // pull locale from environment.
172         $newlocale = FileFinder::_get_lang();
173         list ($newlocale,) = split('_', $newlocale, 2);
174         //$GLOBALS['LANG'] = $loc;
175         //$newlocale = $loc;
176         //return false;
177     }
178     //if (substr($newlocale,0,2) == $loc) // don't update with C or failing setlocale
179     if (!isset($GLOBALS['LANG'])) $GLOBALS['LANG'] = $loc;
180     // Try to put new locale into environment (so any
181     // programs we run will get the right locale.)
182     //
183     // If PHP is in safe mode, this is not allowed,
184     // so hide errors...
185     @putenv("LC_ALL=$newlocale");
186     @putenv("LANG=$newlocale");
187     @putenv("LANGUAGE=$newlocale");
188     
189     if (!function_exists ('bindtextdomain'))  {
190         // Reinitialize translation array.
191         global $locale;
192         $locale = array();
193         // do reinit to purge PHP's static cache
194         if ( ($lcfile = FindLocalizedFile("LC_MESSAGES/phpwiki.php", 'missing_ok', 'reinit')) ) {
195             include($lcfile);
196         }
197     }
198
199     // To get the POSIX character classes in the PCRE's (e.g.
200     // [[:upper:]]) to match extended characters (e.g. GrüßGott), we have
201     // to set the locale, using setlocale().
202     //
203     // The problem is which locale to set?  We would like to recognize all
204     // upper-case characters in the iso-8859-1 character set as upper-case
205     // characters --- not just the ones which are in the current $LANG.
206     //
207     // As it turns out, at least on my system (Linux/glibc-2.2) as long as
208     // you setlocale() to anything but "C" it works fine.  (I'm not sure
209     // whether this is how it's supposed to be, or whether this is a bug
210     // in the libc...)
211     //
212     // We don't currently use the locale setting for anything else, so for
213     // now, just set the locale to US English.
214     //
215     // FIXME: Not all environments may support en_US?  We should probably
216     // have a list of locales to try.
217     if (setlocale(LC_CTYPE, 0) == 'C') {
218         $x = setlocale(LC_CTYPE, 'en_US.' . $GLOBALS['charset']);
219     } else {
220         $x = setlocale(LC_CTYPE, $newlocale);
221     }
222
223     return $newlocale;
224 }
225
226 /** string pcre_fix_posix_classes (string $regexp)
227 *
228 * Older version (pre 3.x?) of the PCRE library do not support
229 * POSIX named character classes (e.g. [[:alnum:]]).
230 *
231 * This is a helper function which can be used to convert a regexp
232 * which contains POSIX named character classes to one that doesn't.
233 *
234 * All instances of strings like '[:<class>:]' are replaced by the equivalent
235 * enumerated character class.
236 *
237 * Implementation Notes:
238 *
239 * Currently we use hard-coded values which are valid only for
240 * ISO-8859-1.  Also, currently on the classes [:alpha:], [:alnum:],
241 * [:upper:] and [:lower:] are implemented.  (The missing classes:
242 * [:blank:], [:cntrl:], [:digit:], [:graph:], [:print:], [:punct:],
243 * [:space:], and [:xdigit:] could easily be added if needed.)
244 *
245 * This is a hack.  I tried to generate these classes automatically
246 * using ereg(), but discovered that in my PHP, at least, ereg() is
247 * slightly broken w.r.t. POSIX character classes.  (It includes
248 * "\xaa" and "\xba" in [:alpha:].)
249 *
250 * So for now, this will do.  --Jeff <dairiki@dairiki.org> 14 Mar, 2001
251 */
252 function pcre_fix_posix_classes ($regexp) {
253     global $charset;
254     if (!isset($charset))
255         $charset = CHARSET; // get rid of constant. pref is dynamic and language specific
256     if (in_array($GLOBALS['LANG'],array('zh')))
257         $charset = 'utf-8';
258     if (in_array($GLOBALS['LANG'],array('ja')))
259         $charset = 'EUC-JP';
260     if (strtolower($charset) == 'utf-8') { // thanks to John McPherson
261         // until posix class names/pcre work with utf-8
262         if (preg_match('/[[:upper:]]/', '\xc4\x80'))
263             return $regexp;    
264         // utf-8 non-ascii chars: most common (eg western) latin chars are 0xc380-0xc3bf
265         // we currently ignore other less common non-ascii characters
266         // (eg central/east european) latin chars are 0xc432-0xcdbf and 0xc580-0xc5be
267         // and indian/cyrillic/asian languages
268         
269         // this replaces [[:lower:]] with utf-8 match (Latin only)
270         $regexp = preg_replace('/\[\[\:lower\:\]\]/','(?:[a-z]|\xc3[\x9f-\xbf]|\xc4[\x81\x83\x85\x87])',
271                                $regexp);
272         // this replaces [[:upper:]] with utf-8 match (Latin only)
273         $regexp = preg_replace('/\[\[\:upper\:\]\]/','(?:[A-Z]|\xc3[\x80-\x9e]|\xc4[\x80\x82\x84\x86])',
274                                $regexp);
275     } elseif (preg_match('/[[:upper:]]/', 'Ä')) {
276         // First check to see if our PCRE lib supports POSIX character
277         // classes.  If it does, there's nothing to do.
278         return $regexp;
279     }
280     static $classes = array(
281                             'alnum' => "0-9A-Za-z\xc0-\xd6\xd8-\xf6\xf8-\xff",
282                             'alpha' => "A-Za-z\xc0-\xd6\xd8-\xf6\xf8-\xff",
283                             'upper' => "A-Z\xc0-\xd6\xd8-\xde",
284                             'lower' => "a-z\xdf-\xf6\xf8-\xff"
285                             );
286     $keys = join('|', array_keys($classes));
287     return preg_replace("/\[:($keys):]/e", '$classes["\1"]', $regexp);
288 }
289
290 function deduce_script_name() {
291     $s = &$GLOBALS['HTTP_SERVER_VARS'];
292     $script = @$s['SCRIPT_NAME'];
293     if (empty($script) or $script[0] != '/') {
294         // Some places (e.g. Lycos) only supply a relative name in
295         // SCRIPT_NAME, but give what we really want in SCRIPT_URL.
296         if (!empty($s['SCRIPT_URL']))
297             $script = $s['SCRIPT_URL'];
298     }
299     return $script;
300 }
301
302 function IsProbablyRedirectToIndex () {
303     // This might be a redirect to the DirectoryIndex,
304     // e.g. REQUEST_URI = /dir/?some_action got redirected
305     // to SCRIPT_NAME = /dir/index.php
306
307     // In this case, the proper virtual path is still
308     // $SCRIPT_NAME, since pages appear at
309     // e.g. /dir/index.php/HomePage.
310
311     $requri = preg_replace('/\?.*$/','',$GLOBALS['HTTP_SERVER_VARS']['REQUEST_URI']);
312     $requri = preg_quote($requri, '%');
313     return preg_match("%^${requri}[^/]*$%", $GLOBALS['HTTP_SERVER_VARS']['SCRIPT_NAME']);
314 }
315
316 // >= php-4.1.0
317 if (!function_exists('array_key_exists')) { // lib/IniConfig.php, sqlite, adodb, ...
318     function array_key_exists($item, $array) {
319         return isset($array[$item]);
320     }
321 }
322
323 // => php-4.0.5
324 if (!function_exists('is_scalar')) { // lib/stdlib.php:hash()
325     function is_scalar($x) {
326         return is_numeric($x) or is_string($x) or is_float($x) or is_bool($x); 
327     }
328 }
329
330 // => php-4.2.0. pear wants to break old php's! DB uses it now.
331 if (!function_exists('is_a')) {
332     function is_a($item,$class) {
333         return isa($item,$class); 
334     }
335 }
336
337 /** 
338  * wordwrap() might crash between 4.1.2 and php-4.3.0RC2, fixed in 4.3.0
339  * See http://bugs.php.net/bug.php?id=20927 and 
340  * http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2002-1396
341  * Improved version of wordwrap2() in the comments at http://www.php.net/wordwrap
342  */
343 function safe_wordwrap($str, $width=80, $break="\n", $cut=false) {
344     if (check_php_version(4,3))
345         return wordwrap($str, $width, $break, $cut);
346     elseif (!check_php_version(4,1,2))
347         return wordwrap($str, $width, $break, $cut);
348     else {
349         $len = strlen($str);
350         $tag = 0; $result = ''; $wordlen = 0;
351         for ($i = 0; $i < $len; $i++) {
352             $chr = $str[$i];
353             // don't break inside xml tags
354             if ($chr == '<') {
355                 $tag++;
356             } elseif ($chr == '>') {
357                 $tag--;
358             } elseif (!$tag) {
359                 if (!function_exists('ctype_space')) {
360                     if (preg_match('/^\s$/', $chr))
361                         $wordlen = 0;
362                     else
363                         $wordlen++;
364                 }
365                 elseif (ctype_space($chr)) {
366                     $wordlen = 0;
367                 } else {
368                     $wordlen++;
369                 }
370             }
371             if ((!$tag) && ($wordlen) && (!($wordlen % $width))) {
372                 $chr .= $break;
373             }
374             $result .= $chr;
375         }
376         return $result;
377         /*
378         if (isset($str) && isset($width)) {
379             $ex = explode(" ", $str); // wrong: must use preg_split \s+
380             $rp = array();
381             for ($i=0; $i<count($ex); $i++) {
382                 // $word_array = preg_split('//', $ex[$i], -1, PREG_SPLIT_NO_EMPTY);
383                 // delete #&& !is_numeric($ex[$i])# if you want force it anyway
384                 if (strlen($ex[$i]) > $width && !is_numeric($ex[$i])) {
385                     $where = 0;
386                     $rp[$i] = "";
387                     for($b=0; $b < (ceil(strlen($ex[$i]) / $width)); $b++) {
388                         $rp[$i] .= substr($ex[$i], $where, $width).$break;
389                         $where += $width;
390                     }
391                 } else {
392                     $rp[$i] = $ex[$i];
393                 }
394             }
395             return implode(" ",$rp);
396         }
397         return $text;
398         */
399     }
400 }
401
402 function getUploadFilePath() {
403     return defined('PHPWIKI_DIR') ? PHPWIKI_DIR . "/uploads/" : "uploads/";
404 }
405 function getUploadDataPath() {
406   return SERVER_URL . ((substr(DATA_PATH,0,1)=='/') ? '' : "/") . DATA_PATH . '/uploads/';
407 }
408
409 // $Log: not supported by cvs2svn $
410 // Revision 1.122  2004/10/14 17:49:58  rurban
411 // fix warning in safe_wordwrap
412 //
413 // Revision 1.121  2004/10/14 17:48:19  rurban
414 // typo in safe_wordwrap
415 //
416 // Revision 1.120  2004/09/22 13:46:26  rurban
417 // centralize upload paths.
418 // major WikiPluginCached feature enhancement:
419 //   support _STATIC pages in uploads/ instead of dynamic getimg.php? subrequests.
420 //   mainly for debugging, cache problems and action=pdf
421 //
422 // Revision 1.119  2004/09/16 07:50:37  rurban
423 // wordwrap() might crash between 4.1.2 and php-4.3.0RC2, fixed in 4.3.0
424 // See http://bugs.php.net/bug.php?id=20927 and
425 //     http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2002-1396
426 // Improved version of wordwrap2() from the comments at http://www.php.net/wordwrap
427 //
428 // Revision 1.118  2004/07/13 14:03:31  rurban
429 // just some comments
430 //
431 // Revision 1.117  2004/06/21 17:29:17  rurban
432 // pear DB introduced a is_a requirement. so pear lost support for php < 4.2.0
433 //
434 // Revision 1.116  2004/06/21 08:39:37  rurban
435 // pear/Cache update from Cache-1.5.4 (added db and trifile container)
436 // pear/DB update from DB-1.6.1 (mysql bugfixes, php5 compat, DB_PORTABILITY features)
437 //
438 // Revision 1.115  2004/06/20 14:42:54  rurban
439 // various php5 fixes (still broken at blockparser)
440 //
441 // Revision 1.114  2004/06/19 11:48:05  rurban
442 // moved version check forwards: already needed in XmlElement::_quote
443 //
444 // Revision 1.113  2004/06/03 12:59:41  rurban
445 // simplify translation
446 // NS4 wrap=virtual only
447 //
448 // Revision 1.112  2004/06/02 18:01:46  rurban
449 // init global FileFinder to add proper include paths at startup
450 //   adds PHPWIKI_DIR if started from another dir, lib/pear also
451 // fix slashify for Windows
452 // fix USER_AUTH_POLICY=old, use only USER_AUTH_ORDER methods (besides HttpAuth)
453 //
454 // Revision 1.111  2004/05/17 17:43:29  rurban
455 // CGI: no PATH_INFO fix
456 //
457 // Revision 1.110  2004/05/16 23:10:44  rurban
458 // update_locale wrongly resetted LANG, which broke japanese.
459 // japanese now correctly uses EUC_JP, not utf-8.
460 // more charset and lang headers to help the browser.
461 //
462 // Revision 1.109  2004/05/08 14:06:12  rurban
463 // new support for inlined image attributes: [image.jpg size=50x30 align=right]
464 // minor stability and portability fixes
465 //
466 // Revision 1.108  2004/05/08 11:25:16  rurban
467 // php-4.0.4 fixes
468 //
469 // Revision 1.107  2004/05/06 17:30:38  rurban
470 // CategoryGroup: oops, dos2unix eol
471 // improved phpwiki_version:
472 //   pre -= .0001 (1.3.10pre: 1030.099)
473 //   -p1 += .001 (1.3.9-p1: 1030.091)
474 // improved InstallTable for mysql and generic SQL versions and all newer tables so far.
475 // abstracted more ADODB/PearDB methods for action=upgrade stuff:
476 //   backend->backendType(), backend->database(),
477 //   backend->listOfFields(),
478 //   backend->listOfTables(),
479 //
480 // Revision 1.106  2004/05/02 19:12:14  rurban
481 // fix sf.net bug #945154 Konqueror alt css
482 //
483 // Revision 1.105  2004/05/02 15:10:06  rurban
484 // new finally reliable way to detect if /index.php is called directly
485 //   and if to include lib/main.php
486 // new global AllActionPages
487 // SetupWiki now loads all mandatory pages: HOME_PAGE, action pages, and warns if not.
488 // WikiTranslation what=buttons for Carsten to create the missing MacOSX buttons
489 // PageGroupTestOne => subpages
490 // renamed PhpWikiRss to PhpWikiRecentChanges
491 // more docs, default configs, ...
492 //
493 // Revision 1.104  2004/05/01 11:26:37  rurban
494 // php-4.0.x support: array_key_exists (PHP 4 >= 4.1.0)
495 //
496 // Revision 1.103  2004/04/30 00:04:14  rurban
497 // zh (chinese language) support
498 //
499 // Revision 1.102  2004/04/29 23:25:12  rurban
500 // re-ordered locale init (as in 1.3.9)
501 // fixed loadfile with subpages, and merge/restore anyway
502 //   (sf.net bug #844188)
503 //
504 // Revision 1.101  2004/04/26 13:22:32  rurban
505 // calculate bool old or dynamic constants later
506 //
507 // Revision 1.100  2004/04/26 12:15:01  rurban
508 // check default config values
509 //
510 // Revision 1.99  2004/04/21 14:04:24  zorloc
511 // 'Require lib/FileFinder.php' necessary to allow for call to FindLocalizedFile().
512 //
513 // Revision 1.98  2004/04/20 18:10:28  rurban
514 // config refactoring:
515 //   FileFinder is needed for WikiFarm scripts calling index.php
516 //   config run-time calls moved to lib/IniConfig.php:fix_configs()
517 //   added PHPWIKI_DIR smart-detection code (Theme finder)
518 //   moved FileFind to lib/FileFinder.php
519 //   cleaned lib/config.php
520 //
521 // Revision 1.97  2004/04/18 01:11:52  rurban
522 // more numeric pagename fixes.
523 // fixed action=upload with merge conflict warnings.
524 // charset changed from constant to global (dynamic utf-8 switching)
525 //
526
527 // For emacs users
528 // Local Variables:
529 // mode: php
530 // tab-width: 8
531 // c-basic-offset: 4
532 // c-hanging-comment-ender-p: nil
533 // indent-tabs-mode: nil
534 // End:
535 ?>