]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - index.php
New config settings in index.php to control cache control strictness.
[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.104 2003-02-26 02:55:52 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 // CACHE_CONTROL
166 //
167 // This controls how PhpWiki sets the HTTP cache control
168 // headers (Expires: and Cache-Control:) 
169 //
170 // Choose one of:
171 //
172 // NONE: This is roughly the old (pre 1.3.4) behavior.  PhpWiki will
173 //       instruct proxies and browsers never to cache PhpWiki output.
174 //
175 // STRICT: Cached pages will be invalidated whenever the database global
176 //       timestamp changes.  This should behave just like NONE (modulo
177 //       bugs in PhpWiki and your proxies and browsers), except that
178 //       things will be slightly more efficient.
179 //
180 // LOOSE: Cached pages will be invalidated whenever they are edited,
181 //       or, if the pages include plugins, when the plugin output could
182 //       concievably have changed.
183 //
184 //       Behavior should be much like STRICT, except that sometimes
185 //       wikilinks will show up as undefined (with the question mark)
186 //       when in fact they refer to (recently) created pages.
187 //       (Hitting your browsers reload or perhaps shift-reload button
188 //       should fix the problem.)
189 //
190 // ALLOW_STALE: Proxies and browsers will be allowed to used stale pages.
191 //       (The timeout for stale pages is controlled by CACHE_CONTROL_MAX_AGE.)
192 //
193 //       This setting will result in quirky behavior.  When you edit a
194 //       page your changes may not show up until you shift-reload the
195 //       page, etc...
196 //
197 //       This setting is generally not advisable, however it may be useful
198 //       in certain cases (e.g. if your wiki gets lots of page views,
199 //       and few edits by knowledgable people who won't freak over the quirks.)
200 //
201 // The default is currently LOOSE.
202 //
203 if (!defined('CACHE_CONTROL')) define('CACHE_CONTROL', 'LOOSE');
204
205 // Maximum page staleness, in seconds.
206 //
207 // This only has effect if CACHE_CONTROL is set to ALLOW_STALE.
208 if (!defined('CACHE_CONTROL_MAX_AGE')) define('CACHE_CONTROL_MAX_AGE', 600);
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 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 $LANG to the empty string, your systems default language
537 // (as determined by the applicable environment variables) will be
538 // used.
539 //
540 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 /////////////////////////////////////////////////////////////////////
599 //
600 // Part Six:
601 // URL options -- you can probably skip this section.
602 //
603 /////////////////////////////////////////////////////////////////////
604 /******************************************************************
605  *
606  * The following section contains settings which you can use to tailor
607  * the URLs which PhpWiki generates.
608  *
609  * Any of these parameters which are left undefined will be deduced
610  * automatically. You need only set them explicitly if the
611  * auto-detected values prove to be incorrect.
612  *
613  * In most cases the auto-detected values should work fine, so
614  * hopefully you don't need to mess with this section.
615  *
616  * In case of local overrides of short placeholders, which themselves 
617  * include index.php, we check for most constants. See '/wiki'.
618  * We can override DATA_PATH and PHPWIKI_DIR to support multiple phpwiki 
619  * versions (for development), but most likely other values like 
620  * THEME, $LANG and $DbParams for a WikiFarm.
621  *
622  ******************************************************************/
623
624 /*
625  * Canonical name and httpd port of the server on which this PhpWiki
626  * resides.
627  */
628 //if (!defined('SERVER_NAME')) define('SERVER_NAME', 'some.host.com');
629 //define('SERVER_PORT', 80);
630
631 /*
632  * Relative URL (from the server root) of the PhpWiki
633  * script.
634  */
635 //if (!defined('SCRIPT_NAME')) define('SCRIPT_NAME', '/some/where/index.php');
636
637 /*
638  * URL of the PhpWiki install directory.  (You only need to set this
639  * if you've moved index.php out of the install directory.)  This can
640  * be either a relative URL (from the directory where the top-level
641  * PhpWiki script is) or an absolute one.
642  */
643 //if (!defined('DATA_PATH')) define('DATA_PATH', '/home/user/phpwiki');
644
645 /*
646  * Path to the PhpWiki install directory.  This is the local
647  * filesystem counterpart to DATA_PATH.  (If you have to set
648  * DATA_PATH, your probably have to set this as well.)  This can be
649  * either an absolute path, or a relative path interpreted from the
650  * directory where the top-level PhpWiki script (normally index.php)
651  * resides.
652  */
653 //if (!defined('PHPWIKI_DIR')) define('PHPWIKI_DIR', 'C:/Apache/phpwiki');
654 //if (!defined('PHPWIKI_DIR')) define('PHPWIKI_DIR', '/home/user/public_html/phpwiki');
655
656 /*
657  * Define to false to NOT use PATH_INFO to pass the pagename's.
658  * e.g. the old http://www.some.where/index.php?pagename=HomePage
659  * instead of http://www.some.where/index.php/HomePage
660  * or even better http://www.some.where/wiki/HomePage
661  *
662  * FIXME: more docs (maybe in README).
663  * Default: true
664  */
665 //if (!defined('USE_PATH_INFO')) define('USE_PATH_INFO', false);
666
667 /*
668  * VIRTUAL_PATH is the canonical URL path under which your your wiki
669  * appears. Normally this is the same as dirname(SCRIPT_NAME), however
670  * using, e.g. apaches mod_actions (or mod_rewrite), you can make it
671  * something different.
672  *
673  * If you do this, you should set VIRTUAL_PATH here.
674  *
675  * E.g. your phpwiki might be installed at at /scripts/phpwiki/index.php,
676  * but  * you've made it accessible through eg. /wiki/HomePage.
677  *
678  * One way to do this is to create a directory named 'wiki' in your
679  * server root. The directory contains only one file: an .htaccess
680  * file which reads something like:
681  *
682  *    Action x-phpwiki-page /scripts/phpwiki/index.php
683  *    SetHandler x-phpwiki-page
684  *    DirectoryIndex /scripts/phpwiki/index.php
685  *
686  * In that case you should set VIRTUAL_PATH to '/wiki'.
687  *
688  * (VIRTUAL_PATH is only used if USE_PATH_INFO is true.)
689  */
690 //if (!defined('VIRTUAL_PATH')) define('VIRTUAL_PATH', '/SomeWiki');
691
692 /////////////////////////////////////////////////////////////////////
693 //
694 // Part Seven:
695 // Miscellaneous settings
696 //
697 /////////////////////////////////////////////////////////////////////
698
699 /*
700  * Page name of RecentChanges page.  Used for RSS Auto-discovery
701  */
702  
703 if (!defined('RECENT_CHANGES')) define ('RECENT_CHANGES', 'RecentChanges');
704
705
706
707 ////////////////////////////////////////////////////////////////
708 // Check if we were included by some other wiki version 
709 // (getimg.php, en, de, wiki, ...) or not. 
710 // If the server requested this index.php fire up the code by loading lib/main.php.
711 // Parallel wiki scripts can now simply include /index.php for the 
712 // main configuration, extend or redefine some settings and 
713 // load lib/main.php by themselves. See the file 'wiki'.
714 // This overcomes the IndexAsConfigProblem.
715 ////////////////////////////////////////////////////////////////
716
717 // Tested: Works with CGI also.
718 if (defined('VIRTUAL_PATH') and defined('USE_PATH_INFO')) {
719     if ($HTTP_SERVER_VARS['SCRIPT_NAME'] == VIRTUAL_PATH) {
720         include "lib/main.php";
721     }
722 } else {
723     if (defined('SCRIPT_NAME') and 
724         ($HTTP_SERVER_VARS['SCRIPT_NAME'] == SCRIPT_NAME)) {
725         include "lib/main.php";
726     } elseif (strstr($HTTP_SERVER_VARS['PHP_SELF'],'index.php')) {
727         include "lib/main.php";
728     }
729 }
730
731 // (c-file-style: "gnu")
732 // Local Variables:
733 // mode: php
734 // tab-width: 8
735 // c-basic-offset: 4
736 // c-hanging-comment-ender-p: nil
737 // indent-tabs-mode: nil
738 // End:   
739
740 // $Log: not supported by cvs2svn $
741 // Revision 1.103  2003/02/22 19:43:50  dairiki
742 // Fix comment regarding connecting to SQL server over a unix socket.
743 //
744 // Revision 1.102  2003/02/22 18:53:38  dairiki
745 // Renamed method Request::compress_output to Request::buffer_output.
746 //
747 // Added config option to disable compression.
748 //
749 // Revision 1.101  2003/02/21 19:29:30  dairiki
750 // Update PHPWIKI_VERSION to 1.3.5pre.
751 //
752 // Revision 1.100  2003/01/04 03:36:58  wainstead
753 // Added 'file' as a database type alongside 'dbm'; added cvs log tag
754 //
755
756 ?>