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