]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - index.php
Fix security bugs in the RawHtml plugin.
[SourceForge/phpwiki.git] / index.php
1 <?php // -*-php-*-
2
3 /*
4 Copyright 1999, 2000, 2001, 2002 $ThePhpWikiProgrammingTeam = array(
5 "Steve Wainstead", "Clifford A. Adams", "Lawrence Akka", 
6 "Scott R. Anderson", "Jon Åslund", "Neil Brown", "Jeff Dairiki",
7 "Stéphane Gourichon", "Jan Hidders", "Arno Hollosi", "John Jorgensen",
8 "Antti Kaihola", "Jeremie Kass", "Carsten Klapp", "Marco Milanesi",
9 "Grant Morgan", "Jan Nieuwenhuizen", "Aredridel Niothke", 
10 "Pablo Roca Rozas", "Sandino Araico Sánchez", "Joel Uckelman", 
11 "Reini Urban", "Tim Voght", "Jochen Kalmbach");
12
13 This file is part of PhpWiki.
14
15 PhpWiki is free software; you can redistribute it and/or modify
16 it under the terms of the GNU General Public License as published by
17 the Free Software Foundation; either version 2 of the License, or
18 (at your option) any later version.
19
20 PhpWiki is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23 GNU General Public License for more details.
24
25 You should have received a copy of the GNU General Public License
26 along with PhpWiki; if not, write to the Free Software
27 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
28 */
29
30
31 /////////////////////////////////////////////////////////////////////
32 /*
33   This is the starting file for PhpWiki. All this file does is set
34   configuration options, and at the end of the file it includes() the
35   file lib/main.php, where the real action begins.
36
37   This file is divided into seven parts: Parts Zero, One, Two, Three,
38   Four, Five and Six. Each one has different configuration settings you can
39   change; in all cases the default should work on your system,
40   however, we recommend you tailor things to your particular setting.
41 */
42
43 /////////////////////////////////////////////////////////////////////
44 // Part Zero: If PHP needs help in finding where you installed the
45 //   rest of the PhpWiki code, you can set the include_path here.
46
47 // Define PHP's include path so that it can find the PHP source code
48 // for this PhpWiki.
49 // 
50 // You shouldn't need to do this unless you've moved index.php out
51 // of the PhpWiki install directory.
52 //
53 // Note that on Windows-based servers, you should use ; rather than :
54 // as the path separator.
55 //ini_set('include_path', '.:/usr/local/httpd/phpwiki');
56
57 if (!defined('DEBUG')) define ('DEBUG', 1);
58
59 /////////////////////////////////////////////////////////////////////
60 // Part Null: Don't touch this!
61
62 define ('PHPWIKI_VERSION', '1.3.5pre');
63 require "lib/prepend.php";
64 rcs_id('$Id: index.php,v 1.109 2003-03-17 21:24:50 dairiki Exp $');
65
66 /////////////////////////////////////////////////////////////////////
67 //
68 // Part One:
69 // Authentication and security settings. See Part Three for more.
70 // 
71 /////////////////////////////////////////////////////////////////////
72
73 // The name of your wiki.
74 // This is used to generate a keywords meta tag in the HTML templates,
75 // in bookmark titles for any bookmarks made to pages in your wiki,
76 // and during RSS generation for the <title> of the RSS channel.
77 if (!defined('WIKI_NAME')) define('WIKI_NAME', 'PhpWiki');
78
79 // If set, we will perform reverse dns lookups to try to convert the
80 // users IP number to a host name, even if the http server didn't do
81 // it for us.
82 if (!defined('ENABLE_REVERSE_DNS')) define('ENABLE_REVERSE_DNS', true);
83
84 // Username and password of administrator.
85 // Set these to your preferences. For heaven's sake
86 // pick a good password or use our passwordencrypt.php tool.
87 if (!defined('ADMIN_USER')) define('ADMIN_USER', "");
88 if (!defined('ADMIN_PASSWD')) define('ADMIN_PASSWD', "");
89 // If you used the passencrypt.php utility to encode the password
90 // then uncomment this line. Recommended!
91 //if (!defined('ENCRYPTED_PASSWD')) define('ENCRYPTED_PASSWD', true);
92
93 // If true, only the admin user can make zip dumps, else zip dumps
94 // require no authentication.
95 if (!defined('ZIPDUMP_AUTH')) define('ZIPDUMP_AUTH', false);
96
97 // Define to false to disable the RawHtml plugin.
98 //if (!defined('ENABLE_RAW_HTML')) define('ENABLE_RAW_HTML', false);
99
100 // If you define this to true, (MIME-type) page-dumps (either zip dumps,
101 // or "dumps to directory" will be encoded using the quoted-printable
102 // encoding.  If you're actually thinking of mailing the raw page dumps,
103 // then this might be useful, since (among other things,) it ensures
104 // that all lines in the message body are under 80 characters in length.
105 //
106 // Also, setting this will cause a few additional mail headers
107 // to be generated, so that the resulting dumps are valid
108 // RFC 2822 e-mail messages.
109 //
110 // Probably, you can just leave this set to false, in which case you get
111 // raw ('binary' content-encoding) page dumps.
112 if (!defined('STRICT_MAILABLE_PAGEDUMPS')) define('STRICT_MAILABLE_PAGEDUMPS', false);
113
114 // Here you can change the filename suffix used for XHTML page dumps.
115 // If you don't want any suffix just comment this out.
116 $HTML_DUMP_SUFFIX = '.html';
117
118 // The maximum file upload size.
119 if (!defined('MAX_UPLOAD_SIZE')) define('MAX_UPLOAD_SIZE', 16 * 1024 * 1024);
120
121 // If the last edit is older than MINOR_EDIT_TIMEOUT seconds, the
122 // default state for the "minor edit" checkbox on the edit page form
123 // will be off.
124 if (!defined('MINOR_EDIT_TIMEOUT')) define("MINOR_EDIT_TIMEOUT", 7 * 24 * 3600);
125
126 // Actions listed in this array will not be allowed.
127 //$DisabledActions = array('dumpserial', 'loadfile');
128
129 // PhpWiki can generate an access_log (in "NCSA combined log" format)
130 // for you. If you want one, define this to the name of the log file.
131 //define('ACCESS_LOG', '/tmp/wiki_access_log');
132
133
134 // By default PhpWiki will try to have PHP compress it's output
135 // before sending it to the browser (if you have a recent enough
136 // version of PHP and the browser supports it.)
137 // Define COMPRESS_OUTPUT to false to prevent output compression.
138 // Define COMPRESS_OUTPUT to true to force output compression,
139 // even if we think your version of PHP does this in a buggy
140 // fashion.
141 // Leave it undefined to leave the choice up to PhpWiki.
142 //define('COMPRESS_OUTPUT', false);
143
144
145 // HTTP CACHE_CONTROL
146 //
147 // This controls how PhpWiki sets the HTTP cache control
148 // headers (Expires: and Cache-Control:) 
149 //
150 // Choose one of:
151 //
152 // NONE: This is roughly the old (pre 1.3.4) behavior.  PhpWiki will
153 //       instruct proxies and browsers never to cache PhpWiki output.
154 //
155 // STRICT: Cached pages will be invalidated whenever the database global
156 //       timestamp changes.  This should behave just like NONE (modulo
157 //       bugs in PhpWiki and your proxies and browsers), except that
158 //       things will be slightly more efficient.
159 //
160 // LOOSE: Cached pages will be invalidated whenever they are edited,
161 //       or, if the pages include plugins, when the plugin output could
162 //       concievably have changed.
163 //
164 //       Behavior should be much like STRICT, except that sometimes
165 //       wikilinks will show up as undefined (with the question mark)
166 //       when in fact they refer to (recently) created pages.
167 //       (Hitting your browsers reload or perhaps shift-reload button
168 //       should fix the problem.)
169 //
170 // ALLOW_STALE: Proxies and browsers will be allowed to used stale pages.
171 //       (The timeout for stale pages is controlled by CACHE_CONTROL_MAX_AGE.)
172 //
173 //       This setting will result in quirky behavior.  When you edit a
174 //       page your changes may not show up until you shift-reload the
175 //       page, etc...
176 //
177 //       This setting is generally not advisable, however it may be useful
178 //       in certain cases (e.g. if your wiki gets lots of page views,
179 //       and few edits by knowledgable people who won't freak over the quirks.)
180 //
181 // The default is currently LOOSE.
182 //
183 if (!defined('CACHE_CONTROL')) define('CACHE_CONTROL', 'LOOSE');
184
185 // Maximum page staleness, in seconds.
186 //
187 // This only has effect if CACHE_CONTROL is set to ALLOW_STALE.
188 if (!defined('CACHE_CONTROL_MAX_AGE')) define('CACHE_CONTROL_MAX_AGE', 600);
189
190
191 // MARKUP CACHING
192 //
193 // PhpWiki normally caches a preparsed version (i.e. mostly
194 // converted to HTML) of the most recent version of each page.
195 // (Parsing the wiki-markup takes a fair amount of CPU.)
196 //
197 // Define WIKIDB_NOCACHE_MARKUP to true to disable the
198 // caching of marked-up page content.
199 //
200 // Note that you can also disable markup caching on a per-page
201 // temporary basis by addinging a query arg of '?nocache=1'
202 // to the URL to the page.  (Use '?nocache=purge' to completely
203 // discard the cached version of the page.)
204 //
205 // You can also purge the cached markup globally by using the
206 // "Purge Markup Cache" button on the PhpWikiAdministration page.
207 //if (!defined('WIKIDB_NOCACHE_MARKUP')) define ('WIKIDB_NOCACHE_MARKUP', true);
208
209
210 /////////////////////////////////////////////////////////////////////
211 //
212 // Part Two:
213 // Database Selection
214 //
215 /////////////////////////////////////////////////////////////////////
216
217 //
218 // This array holds the parameters which select the database to use.
219 //
220 // Not all of these parameters are used by any particular DB backend.
221 //
222 $DBParams = array(
223    // Select the database type:
224    // Choose ADODB or SQL to use an SQL database with ADODB or PEAR.
225    // Choose dba to use one of the standard UNIX dbm libraries.
226    // Choose file to use a flat file database.
227    //'dbtype' => 'ADODB',
228    //'dbtype' => 'SQL',
229    'dbtype'   => 'dba',
230    //'dbtype' => 'file',
231    
232    // For SQL based backends, specify the database as a DSN
233    // The most general form of a DSN looks like:
234    //
235    //   phptype(dbsyntax)://username:password@protocol+hostspec/database
236    //
237    // For a MySQL database, the following should work:
238    //
239    //   mysql://user:password@host/databasename
240    //
241    // To connect over a unix socket, use something like
242    //
243    //   mysql://user:password@unix(/path/to/socket)/databasename
244    //
245    //'dsn' => 'mysql://guest@unix(/var/lib/mysql/mysql.sock)/test',
246    //'dsn' => 'mysql://guest@localhost/test',
247    //'dsn' => 'pgsql://localhost/test',
248
249    // experimental
250    'db_session_table'   => 'session',
251    
252    // Used by all DB types:
253
254    // prefix for filenames or table names
255    /* 
256     * currently you MUST EDIT THE SQL file too (in the schemas/
257     * directory because we aren't doing on the fly sql generation
258     * during the installation.
259    */
260    //'prefix' => 'phpwiki_',
261    
262    // Used by either 'dba' or 'file' and must be writable by the web
263    // server If you leave this as '/tmp' you will probably lose all
264    // your files eventually
265    'directory'     => "/tmp",
266
267    // choose the type of DB database file to use; most GNU systems have gdbm
268    'dba_handler'   => 'gdbm',   // Either of 'gdbm' or 'db2' work great for me.
269    //'dba_handler' => 'db2',
270    //'dba_handler' => 'db3',    // Works fine on Windows, but not on every linux.
271    //'dba_handler' => 'dbm',    // On sf.net redhat there's dbm and gdbm.
272                                 // dbm suffers from limits on size of data items?
273
274    'timeout'   => 20,
275    //'timeout' => 5
276 );
277
278 // Only for 'dbtype' => 'SQL'. See schemas/mysql.sql or schemas/psql.sql
279 //define('USE_DB_SESSION',true);
280
281 /////////////////////////////////////////////////////////////////////
282 //
283 // The next section controls how many old revisions of each page are
284 // kept in the database.
285 //
286 // There are two basic classes of revisions: major and minor. Which
287 // class a revision belongs in is determined by whether the author
288 // checked the "this is a minor revision" checkbox when they saved the
289 // page.
290 // 
291 // There is, additionally, a third class of revisions: author
292 // revisions. The most recent non-mergable revision from each distinct
293 // author is and author revision.
294 //
295 // The expiry parameters for each of those three classes of revisions
296 // can be adjusted seperately. For each class there are five
297 // parameters (usually, only two or three of the five are actually
298 // set) which control how long those revisions are kept in the
299 // database.
300 //
301 //   max_keep: If set, this specifies an absolute maximum for the
302 //             number of archived revisions of that class. This is
303 //             meant to be used as a safety cap when a non-zero
304 //             min_age is specified. It should be set relatively high,
305 //             and it's purpose is to prevent malicious or accidental
306 //             database overflow due to someone causing an
307 //             unreasonable number of edits in a short period of time.
308 //
309 //   min_age:  Revisions younger than this (based upon the supplanted
310 //             date) will be kept unless max_keep is exceeded. The age
311 //             should be specified in days. It should be a
312 //             non-negative, real number,
313 //
314 //   min_keep: At least this many revisions will be kept.
315 //
316 //   keep:     No more than this many revisions will be kept.
317 //
318 //   max_age:  No revision older than this age will be kept.
319 //
320 // Supplanted date: Revisions are timestamped at the instant that they
321 // cease being the current revision. Revision age is computed using
322 // this timestamp, not the edit time of the page.
323 //
324 // Merging: When a minor revision is deleted, if the preceding
325 // revision is by the same author, the minor revision is merged with
326 // the preceding revision before it is deleted. Essentially: this
327 // replaces the content (and supplanted timestamp) of the previous
328 // revision with the content after the merged minor edit, the rest of
329 // the page metadata for the preceding version (summary, mtime, ...)
330 // is not changed.
331 //
332 // Keep up to 8 major edits, but keep them no longer than a month.
333 $ExpireParams['major'] = array('max_age' => 32,
334                                'keep'    => 8);
335 // Keep up to 4 minor edits, but keep them no longer than a week.
336 $ExpireParams['minor'] = array('max_age' => 7,
337                                'keep'    => 4);
338 // Keep the latest contributions of the last 8 authors up to a year.
339 // Additionally, (in the case of a particularly active page) try to
340 // keep the latest contributions of all authors in the last week (even
341 // if there are more than eight of them,) but in no case keep more
342 // than twenty unique author revisions.
343 $ExpireParams['author'] = array('max_age'  => 365,
344                                 'keep'     => 8,
345                                 'min_age'  => 7,
346                                 'max_keep' => 20);
347
348 /////////////////////////////////////////////////////////////////////
349 //
350 // Part Three: (optional)
351 // User Authentification
352 //
353 /////////////////////////////////////////////////////////////////////
354
355 // The wiki can be protected by HTTP Auth. Use the username and password 
356 // from there, but this is not sufficient. Try the other methods also.
357 if (!defined('ALLOW_HTTP_AUTH_LOGIN')) define('ALLOW_HTTP_AUTH_LOGIN', false);
358
359 // If ALLOW_USER_LOGIN is true, any defined internal and external
360 // authentification method is tried. 
361 // If not, we don't care about passwords, but listen to the next 
362 // two constants.
363 if (!defined('ALLOW_USER_LOGIN')) define('ALLOW_USER_LOGIN', true); 
364
365 // If ALLOW_BOGO_LOGIN is true, users are allowed to login (with
366 // any/no password) using any userid which: 
367 //  1) is not the ADMIN_USER,
368 //  2) is a valid WikiWord (matches $WikiNameRegexp.)
369 // If true, users may be created by themselves. Otherwise we need seperate auth. 
370 // This might be renamed to ALLOW_SELF_REGISTRATION.
371 if (!defined('ALLOW_BOGO_LOGIN')) define('ALLOW_BOGO_LOGIN', true);
372
373 // This will go away, with true page permissions.
374 // If set, then if an anonymous user attempts to edit a page he will
375 // be required to sign in.  (If ALLOW_BOGO_LOGIN is true, of course,
376 // no password is required, but the user must still sign in under
377 // some sort of BogoUserId.)
378 if (!defined('REQUIRE_SIGNIN_BEFORE_EDIT')) define('REQUIRE_SIGNIN_BEFORE_EDIT', false);
379
380 // The login code now uses PHP's session support. Usually, the default
381 // configuration of PHP is to store the session state information in
382 // /tmp. That probably will work fine, but fails e.g. on clustered
383 // servers where each server has their own distinct /tmp (this is the
384 // case on SourceForge's project web server.) You can specify an
385 // alternate directory in which to store state information like so
386 // (whatever user your httpd runs as must have read/write permission
387 // in this directory):
388
389 //ini_set('session.save_path', 'some_other_directory');
390
391 // If your php was compiled with --enable-trans-sid it tries to
392 // add a PHPSESSID query argument to all URL strings when cookie
393 // support isn't detected in the client browser.  For reasons
394 // which aren't entirely clear (PHP bug) this screws up the URLs
395 // generated by PhpWiki.  Therefore, transparent session ids
396 // should be disabled.  This next line does that.
397 //
398 // (At the present time, you will not be able to log-in to PhpWiki,
399 // unless your browser supports cookies.)
400 @ini_set('session.use_trans_sid', 0);
401
402 // LDAP auth
403 if (!defined('ALLOW_LDAP_LOGIN')) define('ALLOW_LDAP_LOGIN', true and function_exists('ldap_connect'));
404 if (!defined('LDAP_AUTH_HOST'))   define('LDAP_AUTH_HOST', 'localhost');
405 // Give the right LDAP root search information in the next statement. 
406 if (!defined('LDAP_AUTH_SEARCH')) define('LDAP_AUTH_SEARCH', "ou=mycompany.com,o=My Company");
407
408 // IMAP auth: check userid/passwords from a imap server, defaults to localhost
409 if (!defined('ALLOW_IMAP_LOGIN')) define('ALLOW_IMAP_LOGIN', true and function_exists('imap_open'));
410 if (!defined('IMAP_AUTH_HOST'))   define('IMAP_AUTH_HOST', 'localhost');
411
412 // Sample of external AuthDB mysql tables to check against
413 /*
414 use phpwiki;
415 CREATE TABLE pref (
416   userid char(48) binary NOT NULL UNIQUE,
417   preferences text NULL default '',
418   PRIMARY KEY (userid)
419 ) TYPE=MyISAM;
420 INSERT INTO user VALUES ('ReiniUrban', 'a:1:{s:6:"passwd";s:13:"7cyrcMAh0grMI";}');
421
422 // or password only
423 CREATE TABLE user (
424   userid char(48) binary NOT NULL UNIQUE,
425   passwd char(48) binary default '*',
426   PRIMARY KEY (userid)
427 ) TYPE=MyISAM;
428
429 */
430 // external mysql member table
431 /*
432  CREATE TABLE member (
433    user  char(48) NOT NULL,
434    group char(48) NOT NULL default 'users',
435    PRIMARY KEY (user),
436    KEY groupname (groupname)
437  ) TYPE=MyISAM;
438  INSERT INTO member VALUES ('wikiadmin', 'root');
439  INSERT INTO member VALUES ('TestUser', 'users');
440 */
441
442 // 
443 // Seperate DB User Authentification. 
444 //   Can be external, like radius, phpnuke, courier authmysql,
445 //   apache auth_mysql or something else.
446 // The default is to store the data as metadata in WikiPages.
447 // The most likely dsn option is the same dsn as the wikipages.
448 $DBAuthParams = array(
449    //'auth_dsn'         => 'mysql://localhost/phpwiki',
450
451    // USER => PASSWORD
452    'auth_check'  => 'SELECT passwd FROM user WHERE username="$userid"',
453    // Alternatively we accept files also. (not yet)
454    //'auth_user_file'  => '/etc/shadow', // '/etc/httpd/.htpasswd'
455
456    'auth_crypt_method'  => 'crypt',     // 'crypt' (unix) or 'md5' (mysql) or just 'plain'
457    // 'auth_crypt_method'  => 'md5',    // for 'mysql://localhost/mysql' users
458    // 'auth_crypt_method'  => 'plain',
459
460    // If 'auth_update' is not defined but 'auth_check' is defined, the user cannot 
461    // change his password.
462    // $password is processed  by the 'auth_crypt_method'.
463    'auth_update'  => 'UPDATE user SET password="$password" WHERE username="$userid"',
464
465    // USER => PREFERENCES
466    //   This can be optionally defined in an external DB. 
467    //   The default is the users homepage.
468    //'pref_select' => 'SELECT pref from user WHERE username="$userid"',
469    //'pref_update' => 'UPDATE user SET prefs="$pref_blob" WHERE username="$userid"',
470
471    // USERS <=> GROUPS
472    //   This can be optionally defined in an external DB. The default is a 
473    //   special locked wikipage for groupmembers .(which?)
474    // All members of the group:
475    'group_members' => 'SELECT username FROM grouptable WHERE groupname="$group"',
476    // All groups this user belongs to:
477    'user_groups' => 'SELECT groupname FROM grouptable WHERE username="$userid"',
478    // Alternatively we accept files also. (not yet)
479    //'auth_group_file' => '/etc/groups', // '/etc/httpd/.htgroup'
480
481    'dummy' => false,
482 );
483
484 /////////////////////////////////////////////////////////////////////
485 //
486 // Part Four:
487 // Page appearance and layout
488 //
489 /////////////////////////////////////////////////////////////////////
490
491 /* THEME
492  *
493  * Most of the page appearance is controlled by files in the theme
494  * subdirectory.
495  *
496  * There are a number of pre-defined themes shipped with PhpWiki.
497  * Or you may create your own (e.g. by copying and then modifying one of
498  * stock themes.)
499  *
500  * Pick one.
501  */
502 if (!defined('THEME')) {
503 define('THEME', 'default');
504 //define('THEME', 'Hawaiian');
505 //define('THEME', 'MacOSX');
506 //define('THEME', 'Portland');
507 //define('THEME', 'Sidebar');
508 //define('THEME', 'SpaceWiki');
509 }
510
511 // Select a valid charset name to be inserted into the xml/html pages,
512 // and to reference links to the stylesheets (css). For more info see:
513 // <http://www.iana.org/assignments/character-sets>. Note that PhpWiki
514 // has been extensively tested only with the latin1 (iso-8859-1)
515 // character set.
516 //
517 // If you change the default from iso-8859-1 PhpWiki may not work
518 // properly and it will require code modifications. However, character
519 // sets similar to iso-8859-1 may work with little or no modification
520 // depending on your setup. The database must also support the same
521 // charset, and of course the same is true for the web browser. (Some
522 // work is in progress hopefully to allow more flexibility in this
523 // area in the future).
524 if (!defined('CHARSET')) define("CHARSET", "iso-8859-1");
525
526 // Select your language/locale - default language is "en" for English.
527 // Other languages available:
528 // English "en"  (English    - HomePage)
529 // Dutch   "nl" (Nederlands - ThuisPagina)
530 // Spanish "es" (Español    - PáginaPrincipal)
531 // French  "fr" (Français   - Accueil)
532 // German  "de" (Deutsch    - StartSeite)
533 // Swedish "sv" (Svenska    - Framsida)
534 // Italian "it" (Italiano   - PaginaPrincipale)
535 //
536 // If you set DEFAULT_LANGUAGE to the empty string, your systems
537 // default language (as determined by the applicable environment
538 // variables) will be used.
539 //
540 if (!defined('DEFAULT_LANGUAGE')) define('DEFAULT_LANGUAGE', 'en');
541
542 /* WIKI_PGSRC -- specifies the source for the initial page contents of
543  * the Wiki. The setting of WIKI_PGSRC only has effect when the wiki is
544  * accessed for the first time (or after clearing the database.)
545  * WIKI_PGSRC can either name a directory or a zip file. In either case
546  * WIKI_PGSRC is scanned for files -- one file per page.
547  */
548 if (!defined('WIKI_PGSRC')) define('WIKI_PGSRC', "pgsrc"); // Default (old) behavior.
549 //define('WIKI_PGSRC', 'wiki.zip'); // New style.
550 //define('WIKI_PGSRC', '../../../Logs/Hamwiki/hamwiki-20010830.zip'); // New style.
551
552 /*
553  * DEFAULT_WIKI_PGSRC is only used when the language is *not* the
554  * default (English) and when reading from a directory: in that case
555  * some English pages are inserted into the wiki as well.
556  * DEFAULT_WIKI_PGSRC defines where the English pages reside.
557  */
558 // FIXME: is this really needed?  Can't we just copy these pages into
559 // the localized pgsrc?
560 define('DEFAULT_WIKI_PGSRC', "pgsrc");
561 // These are the pages which will get loaded from DEFAULT_WIKI_PGSRC.   
562 $GenericPages = array("ReleaseNotes", "SteveWainstead", "TestPage");
563
564 /////////////////////////////////////////////////////////////////////
565 //
566 // Part Five:
567 // Mark-up options.
568 // 
569 /////////////////////////////////////////////////////////////////////
570
571 // allowed protocols for links - be careful not to allow "javascript:"
572 // URL of these types will be automatically linked.
573 // within a named link [name|uri] one more protocol is defined: phpwiki
574 $AllowedProtocols = "http|https|mailto|ftp|news|nntp|ssh|gopher";
575
576 // URLs ending with the following extension should be inlined as images
577 $InlineImages = "png|jpg|gif";
578
579 // Perl regexp for WikiNames ("bumpy words")
580 // (?<!..) & (?!...) used instead of '\b' because \b matches '_' as well
581 $WikiNameRegexp = "(?<![[:alnum:]])(?:[[:upper:]][[:lower:]]+){2,}(?![[:alnum:]])";
582
583 // Defaults to '/', but '.' was also used.
584 if (!defined('SUBPAGE_SEPARATOR')) define('SUBPAGE_SEPARATOR', '/');
585
586 // InterWiki linking -- wiki-style links to other wikis on the web
587 //
588 // The map will be taken from a page name InterWikiMap.
589 // If that page is not found (or is not locked), or map
590 // data can not be found in it, then the file specified
591 // by INTERWIKI_MAP_FILE (if any) will be used.
592 define('INTERWIKI_MAP_FILE', "lib/interwiki.map");
593
594 // Display a warning if the internal lib/interwiki.map is used, and 
595 // not the public InterWikiMap page. This map is not readable from outside.
596 //define('WARN_NONPUBLIC_INTERWIKIMAP', false);
597
598 // Regexp used for automatic keyword extraction.
599 //
600 // Any links on a page to pages whose names match this regexp will
601 // be used keywords in the keywords meta tag.  (This is an aid to
602 // classification by search engines.)  The value of the match is
603 // used as the keyword.
604 //
605 // The default behavior is to match Category* and Topic* links.
606 $KeywordLinkRegexp = '(?<=^Category|^Topic)[[:upper:]].*$';
607
608 /////////////////////////////////////////////////////////////////////
609 //
610 // Part Six:
611 // URL options -- you can probably skip this section.
612 //
613 /////////////////////////////////////////////////////////////////////
614 /******************************************************************
615  *
616  * The following section contains settings which you can use to tailor
617  * the URLs which PhpWiki generates.
618  *
619  * Any of these parameters which are left undefined will be deduced
620  * automatically. You need only set them explicitly if the
621  * auto-detected values prove to be incorrect.
622  *
623  * In most cases the auto-detected values should work fine, so
624  * hopefully you don't need to mess with this section.
625  *
626  * In case of local overrides of short placeholders, which themselves 
627  * include index.php, we check for most constants. See '/wiki'.
628  * We can override DATA_PATH and PHPWIKI_DIR to support multiple phpwiki 
629  * versions (for development), but most likely other values like 
630  * THEME, $LANG and $DbParams for a WikiFarm.
631  *
632  ******************************************************************/
633
634 /*
635  * Canonical name and httpd port of the server on which this PhpWiki
636  * resides.
637  */
638 //if (!defined('SERVER_NAME')) define('SERVER_NAME', 'some.host.com');
639 //define('SERVER_PORT', 80);
640
641 /*
642  * Relative URL (from the server root) of the PhpWiki
643  * script.
644  */
645 //if (!defined('SCRIPT_NAME')) define('SCRIPT_NAME', '/some/where/index.php');
646
647 /*
648  * URL of the PhpWiki install directory.  (You only need to set this
649  * if you've moved index.php out of the install directory.)  This can
650  * be either a relative URL (from the directory where the top-level
651  * PhpWiki script is) or an absolute one.
652  */
653 //if (!defined('DATA_PATH')) define('DATA_PATH', '/home/user/phpwiki');
654
655 /*
656  * Path to the PhpWiki install directory.  This is the local
657  * filesystem counterpart to DATA_PATH.  (If you have to set
658  * DATA_PATH, your probably have to set this as well.)  This can be
659  * either an absolute path, or a relative path interpreted from the
660  * directory where the top-level PhpWiki script (normally index.php)
661  * resides.
662  */
663 //if (!defined('PHPWIKI_DIR')) define('PHPWIKI_DIR', 'C:/Apache/phpwiki');
664 //if (!defined('PHPWIKI_DIR')) define('PHPWIKI_DIR', '/home/user/public_html/phpwiki');
665
666 /*
667  * Define to false to NOT use PATH_INFO to pass the pagename's.
668  * e.g. the old http://www.some.where/index.php?pagename=HomePage
669  * instead of http://www.some.where/index.php/HomePage
670  * or even better http://www.some.where/wiki/HomePage
671  *
672  * FIXME: more docs (maybe in README).
673  * Default: true
674  */
675 //if (!defined('USE_PATH_INFO')) define('USE_PATH_INFO', false);
676
677 /*
678  * VIRTUAL_PATH is the canonical URL path under which your your wiki
679  * appears. Normally this is the same as dirname(SCRIPT_NAME), however
680  * using, e.g. apaches mod_actions (or mod_rewrite), you can make it
681  * something different.
682  *
683  * If you do this, you should set VIRTUAL_PATH here.
684  *
685  * E.g. your phpwiki might be installed at at /scripts/phpwiki/index.php,
686  * but  * you've made it accessible through eg. /wiki/HomePage.
687  *
688  * One way to do this is to create a directory named 'wiki' in your
689  * server root. The directory contains only one file: an .htaccess
690  * file which reads something like:
691  *
692  *    Action x-phpwiki-page /scripts/phpwiki/index.php
693  *    SetHandler x-phpwiki-page
694  *    DirectoryIndex /scripts/phpwiki/index.php
695  *
696  * In that case you should set VIRTUAL_PATH to '/wiki'.
697  *
698  * (VIRTUAL_PATH is only used if USE_PATH_INFO is true.)
699  */
700 //if (!defined('VIRTUAL_PATH')) define('VIRTUAL_PATH', '/SomeWiki');
701
702 /////////////////////////////////////////////////////////////////////
703 //
704 // Part Seven:
705 // Miscellaneous settings
706 //
707 /////////////////////////////////////////////////////////////////////
708
709 /*
710  * Page name of RecentChanges page.  Used for RSS Auto-discovery
711  */
712  
713 if (!defined('RECENT_CHANGES')) define ('RECENT_CHANGES', 'RecentChanges');
714
715 /*
716  * Disable HTTP redirects.
717  *
718  * (You probably don't need to touch this.)
719  *
720  * PhpWiki uses HTTP redirects for some of it's functionality.
721  * (e.g. after saving changes, PhpWiki redirects your browser to
722  * view the page you just saved.)
723  *
724  * Some web service providers (notably free European Lycos) don't seem to
725  * allow these redirects.  (On Lycos the result in an "Internal Server Error"
726  * report.)  In that case you can set DISABLE_HTTP_REDIRECT to true.
727  * (In which case, PhpWiki will revert to sneakier tricks to try to
728  * redirect the browser...)
729  */
730 //if (!defined('DISABLE_HTTP_REDIRECT')) define ('DISABLE_HTTP_REDIRECT', true);
731
732 ////////////////////////////////////////////////////////////////
733 // Check if we were included by some other wiki version 
734 // (getimg.php, en, de, wiki, ...) or not. 
735 // If the server requested this index.php fire up the code by loading lib/main.php.
736 // Parallel wiki scripts can now simply include /index.php for the 
737 // main configuration, extend or redefine some settings and 
738 // load lib/main.php by themselves. See the file 'wiki'.
739 // This overcomes the IndexAsConfigProblem.
740 ////////////////////////////////////////////////////////////////
741
742 // Tested: Works with CGI also.
743 if (defined('VIRTUAL_PATH') and defined('USE_PATH_INFO')) {
744     if ($HTTP_SERVER_VARS['SCRIPT_NAME'] == VIRTUAL_PATH) {
745         include "lib/main.php";
746     }
747 } else {
748     if (defined('SCRIPT_NAME') and 
749         ($HTTP_SERVER_VARS['SCRIPT_NAME'] == SCRIPT_NAME)) {
750         include "lib/main.php";
751     } elseif (strstr($HTTP_SERVER_VARS['PHP_SELF'],'index.php')) {
752         include "lib/main.php";
753     }
754 }
755
756 // (c-file-style: "gnu")
757 // Local Variables:
758 // mode: php
759 // tab-width: 8
760 // c-basic-offset: 4
761 // c-hanging-comment-ender-p: nil
762 // indent-tabs-mode: nil
763 // End:   
764
765 // $Log: not supported by cvs2svn $
766 // Revision 1.108  2003/03/07 22:47:01  dairiki
767 // A few more if(!defined(...))'s
768 //
769 // Revision 1.107  2003/03/07 20:51:54  dairiki
770 // New feature: Automatic extraction of keywords (for the meta keywords tag)
771 // from Category* and Topic* links on each page.
772 //
773 // Revision 1.106  2003/03/07 02:48:23  dairiki
774 // Add option to prevent HTTP redirect.
775 //
776 // Revision 1.105  2003/03/04 02:08:08  dairiki
777 // Fix and document the WIKIDB_NOCACHE_MARKUP config define.
778 //
779 // Revision 1.104  2003/02/26 02:55:52  dairiki
780 // New config settings in index.php to control cache control strictness.
781 //
782 // Revision 1.103  2003/02/22 19:43:50  dairiki
783 // Fix comment regarding connecting to SQL server over a unix socket.
784 //
785 // Revision 1.102  2003/02/22 18:53:38  dairiki
786 // Renamed method Request::compress_output to Request::buffer_output.
787 //
788 // Added config option to disable compression.
789 //
790 // Revision 1.101  2003/02/21 19:29:30  dairiki
791 // Update PHPWIKI_VERSION to 1.3.5pre.
792 //
793 // Revision 1.100  2003/01/04 03:36:58  wainstead
794 // Added 'file' as a database type alongside 'dbm'; added cvs log tag
795 //
796
797 ?>