]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - index.php
Update PHPWIKI_VERSION to 1.3.5pre.
[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 // NOTE: phpwiki uses the PEAR library of php code for SQL database
48 // access. Your PHP is probably already configured to set
49 // include_path so that PHP can find the pear code. If not (or if you
50 // change include_path here) make sure you include the path to the
51 // PEAR code in include_path. (To find the PEAR code on your system,
52 // search for a file named 'PEAR.php'. Some common locations are:
53 //
54 //   Unixish systems:
55 //     /usr/share/php
56 //     /usr/local/share/php
57 //   Mac OS X:
58 //     /System/Library/PHP
59 //
60 // The above examples are already included by PhpWiki. You shouldn't
61 // have to change this unless you see a WikiFatalError:
62 //
63 //     lib/FileFinder.php:82: Fatal[256]: DB.php: file not found
64 //
65 // Define the include path for this wiki: pear plus the phpwiki path
66 // $include_path = '.:/usr/share/pear:/usr/local/httpd/phpwiki';
67 //
68 // // Windows needs ';' as path delimiter. cygwin, mac and unix ':'
69 // if (substr(PHP_OS,0,3) == 'WIN') {
70 //     $include_path = implode(';',explode(':',$include_path));
71 // } elseif (substr(PHP_OS,0,6) == 'CYGWIN') {
72 //     $include_path = '.:/usr/local/lib/php/pear:/usr/src/php/phpwiki';
73 // } else {
74 //     ;
75 // }
76 if (!empty($include_path)) ini_set('include_path', $include_path);
77 define ('DEBUG', 1);
78
79 /////////////////////////////////////////////////////////////////////
80 // Part Null: Don't touch this!
81
82 define ('PHPWIKI_VERSION', '1.3.5pre');
83 require "lib/prepend.php";
84 rcs_id('$Id: index.php,v 1.101 2003-02-21 19:29:30 dairiki Exp $');
85
86 /////////////////////////////////////////////////////////////////////
87 //
88 // Part One:
89 // Authentication and security settings. See Part Three for more.
90 // 
91 /////////////////////////////////////////////////////////////////////
92
93 // The name of your wiki.
94 // This is used to generate a keywords meta tag in the HTML templates,
95 // in bookmark titles for any bookmarks made to pages in your wiki,
96 // and during RSS generation for the <title> of the RSS channel.
97 if (!defined('WIKI_NAME')) define('WIKI_NAME', 'PhpWiki');
98
99 // If set, we will perform reverse dns lookups to try to convert the
100 // users IP number to a host name, even if the http server didn't do
101 // it for us.
102 define('ENABLE_REVERSE_DNS', true);
103
104 // Username and password of administrator.
105 // Set these to your preferences. For heaven's sake
106 // pick a good password or use our passwordencrypt.php tool.
107 if (!defined('ADMIN_USER')) define('ADMIN_USER', "");
108 if (!defined('ADMIN_PASSWD')) define('ADMIN_PASSWD', "");
109 // If you used the passencrypt.php utility to encode the password
110 // then uncomment this line. Recommended!
111 //if (!defined('ENCRYPTED_PASSWD')) define('ENCRYPTED_PASSWD', true);
112
113 // If true, only the admin user can make zip dumps, else zip dumps
114 // require no authentication.
115 if (!defined('ZIPDUMP_AUTH')) define('ZIPDUMP_AUTH', false);
116
117 // Don't do this on a publicly accessable wiki for now.
118 if (!defined('ENABLE_RAW_HTML')) define('ENABLE_RAW_HTML', false);
119
120 // If you define this to true, (MIME-type) page-dumps (either zip dumps,
121 // or "dumps to directory" will be encoded using the quoted-printable
122 // encoding.  If you're actually thinking of mailing the raw page dumps,
123 // then this might be useful, since (among other things,) it ensures
124 // that all lines in the message body are under 80 characters in length.
125 //
126 // Also, setting this will cause a few additional mail headers
127 // to be generated, so that the resulting dumps are valid
128 // RFC 2822 e-mail messages.
129 //
130 // Probably, you can just leave this set to false, in which case you get
131 // raw ('binary' content-encoding) page dumps.
132 define('STRICT_MAILABLE_PAGEDUMPS', false);
133
134 // Here you can change the filename suffix used for XHTML page dumps.
135 // If you don't want any suffix just comment this out.
136 $HTML_DUMP_SUFFIX = '.html';
137
138 // The maximum file upload size.
139 define('MAX_UPLOAD_SIZE', 16 * 1024 * 1024);
140
141 // If the last edit is older than MINOR_EDIT_TIMEOUT seconds, the
142 // default state for the "minor edit" checkbox on the edit page form
143 // will be off.
144 define("MINOR_EDIT_TIMEOUT", 7 * 24 * 3600);
145
146 // Actions listed in this array will not be allowed.
147 //$DisabledActions = array('dumpserial', 'loadfile');
148
149 // PhpWiki can generate an access_log (in "NCSA combined log" format)
150 // for you. If you want one, define this to the name of the log file.
151 //define('ACCESS_LOG', '/tmp/wiki_access_log');
152
153 /////////////////////////////////////////////////////////////////////
154 //
155 // Part Two:
156 // Database Selection
157 //
158 /////////////////////////////////////////////////////////////////////
159
160 //
161 // This array holds the parameters which select the database to use.
162 //
163 // Not all of these parameters are used by any particular DB backend.
164 //
165 $DBParams = array(
166    // Select the database type:
167    // Choose ADODB or SQL to use an SQL database with ADODB or PEAR.
168    // Choose dba to use one of the standard UNIX dbm libraries.
169    // Choose file to use a flat file database.
170    //'dbtype' => 'ADODB',
171    //'dbtype' => 'SQL',
172    'dbtype'   => 'dba',
173    //'dbtype' => 'file',
174    
175    // For SQL based backends, specify the database as a DSN
176    // The most general form of a DSN looks like:
177    //
178    //   phptype(dbsyntax)://username:password@protocol+hostspec/database
179    //
180    // For a MySQL database, the following should work:
181    //
182    //   mysql://user:password@host/databasename
183    //
184    // FIXME: My version Pear::DB seems to be broken enough that there
185    //        is no way to connect to a mysql server over a socket right now.
186    //'dsn' => 'mysql://guest@:/var/lib/mysql/mysql.sock/test',
187    //'dsn' => 'mysql://guest@localhost/test',
188    //'dsn' => 'pgsql://localhost/test',
189
190    // experimental
191    'db_session_table'   => 'session',
192    
193    // Used by all DB types:
194
195    // prefix for filenames or table names
196    /* 
197     * currently you MUST EDIT THE SQL file too (in the schemas/
198     * directory because we aren't doing on the fly sql generation
199     * during the installation.
200    */
201    //'prefix' => 'phpwiki_',
202    
203    // Used by either 'dba' or 'file' and must be writable by the web
204    // server If you leave this as '/tmp' you will probably lose all
205    // your files eventually
206    'directory'     => "/tmp",
207
208    // choose the type of DB database file to use; most GNU systems have gdbm
209    'dba_handler'   => 'gdbm',   // Either of 'gdbm' or 'db2' work great for me.
210    //'dba_handler' => 'db2',
211    //'dba_handler' => 'db3',    // Works fine on Windows, but not on every linux.
212    //'dba_handler' => 'dbm',    // On sf.net redhat there's dbm and gdbm.
213                                 // dbm suffers from limits on size of data items?
214
215    'timeout'   => 20,
216    //'timeout' => 5
217 );
218
219 // Only for 'dbtype' => 'SQL'. See schemas/mysql.sql or schemas/psql.sql
220 //define('USE_DB_SESSION',true);
221
222 /////////////////////////////////////////////////////////////////////
223 //
224 // The next section controls how many old revisions of each page are
225 // kept in the database.
226 //
227 // There are two basic classes of revisions: major and minor. Which
228 // class a revision belongs in is determined by whether the author
229 // checked the "this is a minor revision" checkbox when they saved the
230 // page.
231 // 
232 // There is, additionally, a third class of revisions: author
233 // revisions. The most recent non-mergable revision from each distinct
234 // author is and author revision.
235 //
236 // The expiry parameters for each of those three classes of revisions
237 // can be adjusted seperately. For each class there are five
238 // parameters (usually, only two or three of the five are actually
239 // set) which control how long those revisions are kept in the
240 // database.
241 //
242 //   max_keep: If set, this specifies an absolute maximum for the
243 //             number of archived revisions of that class. This is
244 //             meant to be used as a safety cap when a non-zero
245 //             min_age is specified. It should be set relatively high,
246 //             and it's purpose is to prevent malicious or accidental
247 //             database overflow due to someone causing an
248 //             unreasonable number of edits in a short period of time.
249 //
250 //   min_age:  Revisions younger than this (based upon the supplanted
251 //             date) will be kept unless max_keep is exceeded. The age
252 //             should be specified in days. It should be a
253 //             non-negative, real number,
254 //
255 //   min_keep: At least this many revisions will be kept.
256 //
257 //   keep:     No more than this many revisions will be kept.
258 //
259 //   max_age:  No revision older than this age will be kept.
260 //
261 // Supplanted date: Revisions are timestamped at the instant that they
262 // cease being the current revision. Revision age is computed using
263 // this timestamp, not the edit time of the page.
264 //
265 // Merging: When a minor revision is deleted, if the preceding
266 // revision is by the same author, the minor revision is merged with
267 // the preceding revision before it is deleted. Essentially: this
268 // replaces the content (and supplanted timestamp) of the previous
269 // revision with the content after the merged minor edit, the rest of
270 // the page metadata for the preceding version (summary, mtime, ...)
271 // is not changed.
272 //
273 // Keep up to 8 major edits, but keep them no longer than a month.
274 $ExpireParams['major'] = array('max_age' => 32,
275                                'keep'    => 8);
276 // Keep up to 4 minor edits, but keep them no longer than a week.
277 $ExpireParams['minor'] = array('max_age' => 7,
278                                'keep'    => 4);
279 // Keep the latest contributions of the last 8 authors up to a year.
280 // Additionally, (in the case of a particularly active page) try to
281 // keep the latest contributions of all authors in the last week (even
282 // if there are more than eight of them,) but in no case keep more
283 // than twenty unique author revisions.
284 $ExpireParams['author'] = array('max_age'  => 365,
285                                 'keep'     => 8,
286                                 'min_age'  => 7,
287                                 'max_keep' => 20);
288
289 /////////////////////////////////////////////////////////////////////
290 //
291 // Part Three: (optional)
292 // User Authentification
293 //
294 /////////////////////////////////////////////////////////////////////
295
296 // The wiki can be protected by HTTP Auth. Use the username and password 
297 // from there, but this is not sufficient. Try the other methods also.
298 if (!defined('ALLOW_HTTP_AUTH_LOGIN')) define('ALLOW_HTTP_AUTH_LOGIN', false);
299
300 // If ALLOW_USER_LOGIN is true, any defined internal and external
301 // authentification method is tried. 
302 // If not, we don't care about passwords, but listen to the next 
303 // two constants.
304 if (!defined('ALLOW_USER_LOGIN')) define('ALLOW_USER_LOGIN', true); 
305
306 // If ALLOW_BOGO_LOGIN is true, users are allowed to login (with
307 // any/no password) using any userid which: 
308 //  1) is not the ADMIN_USER,
309 //  2) is a valid WikiWord (matches $WikiNameRegexp.)
310 // If true, users may be created by themselves. Otherwise we need seperate auth. 
311 // This might be renamed to ALLOW_SELF_REGISTRATION.
312 if (!defined('ALLOW_BOGO_LOGIN')) define('ALLOW_BOGO_LOGIN', true);
313
314 // This will go away, with true page permissions.
315 // If set, then if an anonymous user attempts to edit a page he will
316 // be required to sign in.  (If ALLOW_BOGO_LOGIN is true, of course,
317 // no password is required, but the user must still sign in under
318 // some sort of BogoUserId.)
319 if (!defined('REQUIRE_SIGNIN_BEFORE_EDIT')) define('REQUIRE_SIGNIN_BEFORE_EDIT', false);
320
321 // The login code now uses PHP's session support. Usually, the default
322 // configuration of PHP is to store the session state information in
323 // /tmp. That probably will work fine, but fails e.g. on clustered
324 // servers where each server has their own distinct /tmp (this is the
325 // case on SourceForge's project web server.) You can specify an
326 // alternate directory in which to store state information like so
327 // (whatever user your httpd runs as must have read/write permission
328 // in this directory):
329
330 //ini_set('session.save_path', 'some_other_directory');
331
332 // If your php was compiled with --enable-trans-sid it tries to
333 // add a PHPSESSID query argument to all URL strings when cookie
334 // support isn't detected in the client browser.  For reasons
335 // which aren't entirely clear (PHP bug) this screws up the URLs
336 // generated by PhpWiki.  Therefore, transparent session ids
337 // should be disabled.  This next line does that.
338 //
339 // (At the present time, you will not be able to log-in to PhpWiki,
340 // unless your browser supports cookies.)
341 @ini_set('session.use_trans_sid', 0);
342
343 // LDAP auth
344 if (!defined('ALLOW_LDAP_LOGIN')) define('ALLOW_LDAP_LOGIN', true and function_exists('ldap_connect'));
345 if (!defined('LDAP_AUTH_HOST'))   define('LDAP_AUTH_HOST', 'localhost');
346 // Give the right LDAP root search information in the next statement. 
347 if (!defined('LDAP_AUTH_SEARCH')) define('LDAP_AUTH_SEARCH', "ou=mycompany.com,o=My Company");
348
349 // IMAP auth: check userid/passwords from a imap server, defaults to localhost
350 if (!defined('ALLOW_IMAP_LOGIN')) define('ALLOW_IMAP_LOGIN', true and function_exists('imap_open'));
351 if (!defined('IMAP_AUTH_HOST'))   define('IMAP_AUTH_HOST', 'localhost');
352
353 // Sample of external AuthDB mysql tables to check against
354 /*
355 use phpwiki;
356 CREATE TABLE pref (
357   userid char(48) binary NOT NULL UNIQUE,
358   preferences text NULL default '',
359   PRIMARY KEY (userid)
360 ) TYPE=MyISAM;
361 INSERT INTO user VALUES ('ReiniUrban', 'a:1:{s:6:"passwd";s:13:"7cyrcMAh0grMI";}');
362
363 // or password only
364 CREATE TABLE user (
365   userid char(48) binary NOT NULL UNIQUE,
366   passwd char(48) binary default '*',
367   PRIMARY KEY (userid)
368 ) TYPE=MyISAM;
369
370 */
371 // external mysql member table
372 /*
373  CREATE TABLE member (
374    user  char(48) NOT NULL,
375    group char(48) NOT NULL default 'users',
376    PRIMARY KEY (user),
377    KEY groupname (groupname)
378  ) TYPE=MyISAM;
379  INSERT INTO member VALUES ('wikiadmin', 'root');
380  INSERT INTO member VALUES ('TestUser', 'users');
381 */
382
383 // 
384 // Seperate DB User Authentification. 
385 //   Can be external, like radius, phpnuke, courier authmysql,
386 //   apache auth_mysql or something else.
387 // The default is to store the data as metadata in WikiPages.
388 // The most likely dsn option is the same dsn as the wikipages.
389 $DBAuthParams = array(
390    //'auth_dsn'         => 'mysql://localhost/phpwiki',
391
392    // USER => PASSWORD
393    'auth_check'  => 'SELECT passwd FROM user WHERE username="$userid"',
394    // Alternatively we accept files also. (not yet)
395    //'auth_user_file'  => '/etc/shadow', // '/etc/httpd/.htpasswd'
396
397    'auth_crypt_method'  => 'crypt',     // 'crypt' (unix) or 'md5' (mysql) or just 'plain'
398    // 'auth_crypt_method'  => 'md5',    // for 'mysql://localhost/mysql' users
399    // 'auth_crypt_method'  => 'plain',
400
401    // If 'auth_update' is not defined but 'auth_check' is defined, the user cannot 
402    // change his password.
403    // $password is processed  by the 'auth_crypt_method'.
404    'auth_update'  => 'UPDATE user SET password="$password" WHERE username="$userid"',
405
406    // USER => PREFERENCES
407    //   This can be optionally defined in an external DB. 
408    //   The default is the users homepage.
409    //'pref_select' => 'SELECT pref from user WHERE username="$userid"',
410    //'pref_update' => 'UPDATE user SET prefs="$pref_blob" WHERE username="$userid"',
411
412    // USERS <=> GROUPS
413    //   This can be optionally defined in an external DB. The default is a 
414    //   special locked wikipage for groupmembers .(which?)
415    // All members of the group:
416    'group_members' => 'SELECT username FROM grouptable WHERE groupname="$group"',
417    // All groups this user belongs to:
418    'user_groups' => 'SELECT groupname FROM grouptable WHERE username="$userid"',
419    // Alternatively we accept files also. (not yet)
420    //'auth_group_file' => '/etc/groups', // '/etc/httpd/.htgroup'
421
422    'dummy' => false,
423 );
424
425 /////////////////////////////////////////////////////////////////////
426 //
427 // Part Four:
428 // Page appearance and layout
429 //
430 /////////////////////////////////////////////////////////////////////
431
432 /* THEME
433  *
434  * Most of the page appearance is controlled by files in the theme
435  * subdirectory.
436  *
437  * There are a number of pre-defined themes shipped with PhpWiki.
438  * Or you may create your own (e.g. by copying and then modifying one of
439  * stock themes.)
440  *
441  * Pick one.
442  */
443 if (!defined('THEME')) {
444 define('THEME', 'default');
445 //define('THEME', 'Hawaiian');
446 //define('THEME', 'MacOSX');
447 //define('THEME', 'Portland');
448 //define('THEME', 'Sidebar');
449 //define('THEME', 'SpaceWiki');
450 }
451
452 // Select a valid charset name to be inserted into the xml/html pages,
453 // and to reference links to the stylesheets (css). For more info see:
454 // <http://www.iana.org/assignments/character-sets>. Note that PhpWiki
455 // has been extensively tested only with the latin1 (iso-8859-1)
456 // character set.
457 //
458 // If you change the default from iso-8859-1 PhpWiki may not work
459 // properly and it will require code modifications. However, character
460 // sets similar to iso-8859-1 may work with little or no modification
461 // depending on your setup. The database must also support the same
462 // charset, and of course the same is true for the web browser. (Some
463 // work is in progress hopefully to allow more flexibility in this
464 // area in the future).
465 define("CHARSET", "iso-8859-1");
466
467 // Select your language/locale - default language is "en" for English.
468 // Other languages available:
469 // English "en"  (English    - HomePage)
470 // Dutch   "nl" (Nederlands - ThuisPagina)
471 // Spanish "es" (Español    - PáginaPrincipal)
472 // French  "fr" (Français   - Accueil)
473 // German  "de" (Deutsch    - StartSeite)
474 // Swedish "sv" (Svenska    - Framsida)
475 // Italian "it" (Italiano   - PaginaPrincipale)
476 //
477 // If you set $LANG to the empty string, your systems default language
478 // (as determined by the applicable environment variables) will be
479 // used.
480 //
481 define('DEFAULT_LANGUAGE', 'en');
482
483 /* WIKI_PGSRC -- specifies the source for the initial page contents of
484  * the Wiki. The setting of WIKI_PGSRC only has effect when the wiki is
485  * accessed for the first time (or after clearing the database.)
486  * WIKI_PGSRC can either name a directory or a zip file. In either case
487  * WIKI_PGSRC is scanned for files -- one file per page.
488  */
489 if (!defined('WIKI_PGSRC')) define('WIKI_PGSRC', "pgsrc"); // Default (old) behavior.
490 //define('WIKI_PGSRC', 'wiki.zip'); // New style.
491 //define('WIKI_PGSRC', '../../../Logs/Hamwiki/hamwiki-20010830.zip'); // New style.
492
493 /*
494  * DEFAULT_WIKI_PGSRC is only used when the language is *not* the
495  * default (English) and when reading from a directory: in that case
496  * some English pages are inserted into the wiki as well.
497  * DEFAULT_WIKI_PGSRC defines where the English pages reside.
498  */
499 // FIXME: is this really needed?  Can't we just copy these pages into
500 // the localized pgsrc?
501 define('DEFAULT_WIKI_PGSRC', "pgsrc");
502 // These are the pages which will get loaded from DEFAULT_WIKI_PGSRC.   
503 $GenericPages = array("ReleaseNotes", "SteveWainstead", "TestPage");
504
505 /////////////////////////////////////////////////////////////////////
506 //
507 // Part Five:
508 // Mark-up options.
509 // 
510 /////////////////////////////////////////////////////////////////////
511
512 // allowed protocols for links - be careful not to allow "javascript:"
513 // URL of these types will be automatically linked.
514 // within a named link [name|uri] one more protocol is defined: phpwiki
515 $AllowedProtocols = "http|https|mailto|ftp|news|nntp|ssh|gopher";
516
517 // URLs ending with the following extension should be inlined as images
518 $InlineImages = "png|jpg|gif";
519
520 // Perl regexp for WikiNames ("bumpy words")
521 // (?<!..) & (?!...) used instead of '\b' because \b matches '_' as well
522 $WikiNameRegexp = "(?<![[:alnum:]])(?:[[:upper:]][[:lower:]]+){2,}(?![[:alnum:]])";
523
524 // Defaults to '/', but '.' was also used.
525 if (!defined('SUBPAGE_SEPARATOR')) define('SUBPAGE_SEPARATOR', '/');
526
527 // InterWiki linking -- wiki-style links to other wikis on the web
528 //
529 // The map will be taken from a page name InterWikiMap.
530 // If that page is not found (or is not locked), or map
531 // data can not be found in it, then the file specified
532 // by INTERWIKI_MAP_FILE (if any) will be used.
533 define('INTERWIKI_MAP_FILE', "lib/interwiki.map");
534
535 // Display a warning if the internal lib/interwiki.map is used, and 
536 // not the public InterWikiMap page. This map is not readable from outside.
537 //define('WARN_NONPUBLIC_INTERWIKIMAP', false);
538
539 /////////////////////////////////////////////////////////////////////
540 //
541 // Part Six:
542 // URL options -- you can probably skip this section.
543 //
544 /////////////////////////////////////////////////////////////////////
545 /******************************************************************
546  *
547  * The following section contains settings which you can use to tailor
548  * the URLs which PhpWiki generates.
549  *
550  * Any of these parameters which are left undefined will be deduced
551  * automatically. You need only set them explicitly if the
552  * auto-detected values prove to be incorrect.
553  *
554  * In most cases the auto-detected values should work fine, so
555  * hopefully you don't need to mess with this section.
556  *
557  * In case of local overrides of short placeholders, which themselves 
558  * include index.php, we check for most constants. See '/wiki'.
559  * We can override DATA_PATH and PHPWIKI_DIR to support multiple phpwiki 
560  * versions (for development), but most likely other values like 
561  * THEME, $LANG and $DbParams for a WikiFarm.
562  *
563  ******************************************************************/
564
565 /*
566  * Canonical name and httpd port of the server on which this PhpWiki
567  * resides.
568  */
569 //if (!defined('SERVER_NAME')) define('SERVER_NAME', 'some.host.com');
570 //define('SERVER_PORT', 80);
571
572 /*
573  * Relative URL (from the server root) of the PhpWiki
574  * script.
575  */
576 //if (!defined('SCRIPT_NAME')) define('SCRIPT_NAME', '/some/where/index.php');
577
578 /*
579  * URL of the PhpWiki install directory.  (You only need to set this
580  * if you've moved index.php out of the install directory.)  This can
581  * be either a relative URL (from the directory where the top-level
582  * PhpWiki script is) or an absolute one.
583  */
584 //if (!defined('DATA_PATH')) define('DATA_PATH', '/home/user/phpwiki');
585
586 /*
587  * Path to the PhpWiki install directory.  This is the local
588  * filesystem counterpart to DATA_PATH.  (If you have to set
589  * DATA_PATH, your probably have to set this as well.)  This can be
590  * either an absolute path, or a relative path interpreted from the
591  * directory where the top-level PhpWiki script (normally index.php)
592  * resides.
593  */
594 //if (!defined('PHPWIKI_DIR')) define('PHPWIKI_DIR', 'C:/Apache/phpwiki');
595 //if (!defined('PHPWIKI_DIR')) define('PHPWIKI_DIR', '/home/user/public_html/phpwiki');
596
597 /*
598  * Define to false to NOT use PATH_INFO to pass the pagename's.
599  * e.g. the old http://www.some.where/index.php?pagename=HomePage
600  * instead of http://www.some.where/index.php/HomePage
601  * or even better http://www.some.where/wiki/HomePage
602  *
603  * FIXME: more docs (maybe in README).
604  * Default: true
605  */
606 //if (!defined('USE_PATH_INFO')) define('USE_PATH_INFO', false);
607
608 /*
609  * VIRTUAL_PATH is the canonical URL path under which your your wiki
610  * appears. Normally this is the same as dirname(SCRIPT_NAME), however
611  * using, e.g. apaches mod_actions (or mod_rewrite), you can make it
612  * something different.
613  *
614  * If you do this, you should set VIRTUAL_PATH here.
615  *
616  * E.g. your phpwiki might be installed at at /scripts/phpwiki/index.php,
617  * but  * you've made it accessible through eg. /wiki/HomePage.
618  *
619  * One way to do this is to create a directory named 'wiki' in your
620  * server root. The directory contains only one file: an .htaccess
621  * file which reads something like:
622  *
623  *    Action x-phpwiki-page /scripts/phpwiki/index.php
624  *    SetHandler x-phpwiki-page
625  *    DirectoryIndex /scripts/phpwiki/index.php
626  *
627  * In that case you should set VIRTUAL_PATH to '/wiki'.
628  *
629  * (VIRTUAL_PATH is only used if USE_PATH_INFO is true.)
630  */
631 //if (!defined('VIRTUAL_PATH')) define('VIRTUAL_PATH', '/SomeWiki');
632
633 /////////////////////////////////////////////////////////////////////
634 //
635 // Part Seven:
636 // Miscellaneous settings
637 //
638 /////////////////////////////////////////////////////////////////////
639
640 /*
641  * Page name of RecentChanges page.  Used for RSS Auto-discovery
642  */
643  
644 if (!defined('RECENT_CHANGES')) define ('RECENT_CHANGES', 'RecentChanges');
645
646
647
648 ////////////////////////////////////////////////////////////////
649 // Check if we were included by some other wiki version 
650 // (getimg.php, en, de, wiki, ...) or not. 
651 // If the server requested this index.php fire up the code by loading lib/main.php.
652 // Parallel wiki scripts can now simply include /index.php for the 
653 // main configuration, extend or redefine some settings and 
654 // load lib/main.php by themselves. See the file 'wiki'.
655 // This overcomes the IndexAsConfigProblem.
656 ////////////////////////////////////////////////////////////////
657
658 // Tested: Works with CGI also.
659 if (defined('VIRTUAL_PATH') and defined('USE_PATH_INFO')) {
660     if ($HTTP_SERVER_VARS['SCRIPT_NAME'] == VIRTUAL_PATH) {
661         include "lib/main.php";
662     }
663 } else {
664     if (defined('SCRIPT_NAME') and 
665         ($HTTP_SERVER_VARS['SCRIPT_NAME'] == SCRIPT_NAME)) {
666         include "lib/main.php";
667     } elseif (strstr($HTTP_SERVER_VARS['PHP_SELF'],'index.php')) {
668         include "lib/main.php";
669     }
670 }
671
672 // (c-file-style: "gnu")
673 // Local Variables:
674 // mode: php
675 // tab-width: 8
676 // c-basic-offset: 4
677 // c-hanging-comment-ender-p: nil
678 // indent-tabs-mode: nil
679 // End:   
680
681 // $Log: not supported by cvs2svn $
682 // Revision 1.100  2003/01/04 03:36:58  wainstead
683 // Added 'file' as a database type alongside 'dbm'; added cvs log tag
684 //
685
686 ?>