]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - index.php
Finished the copyright notice, and added new team members and contributors.
[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");
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 six parts: Parts Zero, One, Two, Three,
38   Four and Five. 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 //ini_set('include_path', '.:/where/you/installed/phpwiki');
66
67 /////////////////////////////////////////////////////////////////////
68 // Part Null: Don't touch this!
69
70 define ('PHPWIKI_VERSION', '1.3.2-jeffs-hacks');
71 require "lib/prepend.php";
72 rcs_id('$Id: index.php,v 1.67 2002-01-19 08:20:19 carstenklapp Exp $');
73
74 /////////////////////////////////////////////////////////////////////
75 //
76 // Part One:
77 // Authentication and security settings:
78 // 
79 /////////////////////////////////////////////////////////////////////
80
81 // The name of your wiki.
82 // This is used to generate a keywords meta tag in the HTML templates,
83 // in bookmark titles for any bookmarks made to pages in your wiki,
84 // and during RSS generation for the <title> of the RSS channel.
85 //define('WIKI_NAME', 'PhpWiki');
86
87 // If set, we will perform reverse dns lookups to try to convert the
88 // users IP number to a host name, even if the http server didn't do
89 // it for us.
90 define('ENABLE_REVERSE_DNS', true);
91
92 // Username and password of administrator.
93 // Set these to your preferences. For heaven's sake
94 // pick a good password!
95 define('ADMIN_USER', "");
96 define('ADMIN_PASSWD', "");
97
98 // If true, only the admin user can make zip dumps, else zip dumps
99 // require no authentication.
100 define('ZIPDUMP_AUTH', false);
101
102 // This setting determines the type of page dumps. Must be one of
103 // "quoted-printable" or "binary".
104 $pagedump_format = "quoted-printable";
105
106 // The maximum file upload size.
107 define('MAX_UPLOAD_SIZE', 16 * 1024 * 1024);
108
109 // If the last edit is older than MINOR_EDIT_TIMEOUT seconds, the
110 // default state for the "minor edit" checkbox on the edit page form
111 // will be off.
112 define("MINOR_EDIT_TIMEOUT", 7 * 24 * 3600);
113
114 // Actions listed in this array will not be allowed.
115 //$DisabledActions = array('dumpserial', 'loadfile');
116
117 // PhpWiki can generate an access_log (in "NCSA combined log" format)
118 // for you. If you want one, define this to the name of the log file.
119 //define('ACCESS_LOG', '/tmp/wiki_access_log');
120
121
122 // If ALLOW_BOGO_LOGIN is true, users are allowed to login (with
123 // any/no password) using any userid which: 1) is not the ADMIN_USER,
124 // 2) is a valid WikiWord (matches $WikiNameRegexp.)
125 define('ALLOW_BOGO_LOGIN', true);
126
127 // The login code now uses PHP's session support. Usually, the default
128 // configuration of PHP is to store the session state information in
129 // /tmp. That probably will work fine, but fails e.g. on clustered
130 // servers where each server has their own distinct /tmp (this is the
131 // case on SourceForge's project web server.) You can specify an
132 // alternate directory in which to store state information like so
133 // (whatever user your httpd runs as must have read/write permission
134 // in this directory):
135
136 //ini_set('session.save_path', 'some_other_directory');
137
138
139 /////////////////////////////////////////////////////////////////////
140 //
141 // Part Two:
142 // Database Selection
143 //
144 /////////////////////////////////////////////////////////////////////
145
146 //
147 // This array holds the parameters which select the database to use.
148 //
149 // Not all of these parameters are used by any particular DB backend.
150 //
151 $DBParams = array(
152    // Select the database type:
153    //'dbtype' => 'SQL',
154    'dbtype'   => 'dba',
155    
156    // For SQL based backends, specify the database as a DSN
157    // The most general form of a DSN looks like:
158    //
159    //   phptype(dbsyntax)://username:password@protocol+hostspec/database
160    //
161    // For a MySQL database, the following should work:
162    //
163    //   mysql://user:password@host/databasename
164    //
165    // FIXME: My version Pear::DB seems to be broken enough that there
166    //        is no way to connect to a mysql server over a socket right now.
167    //'dsn' => 'mysql://guest@:/var/lib/mysql/mysql.sock/test',
168    //'dsn' => 'mysql://guest@localhost/test',
169    //'dsn' => 'pgsql://localhost/test',
170    
171    // Used by all DB types:
172
173    // prefix for filenames or table names
174    /* 
175     * currently you MUST EDIT THE SQL file too (in the schemas/
176     * directory because we aren't doing on the fly sql generation
177     * during the installation.
178    */
179    //'prefix' => 'phpwiki_',
180    
181    // Used by 'dba'
182    'directory'     => "/tmp",
183    'dba_handler'   => 'gdbm',   // Either of 'gdbm' or 'db2' work great for me.
184    //'dba_handler' => 'db2',
185    //'dba_handler' => 'db3',    // doesn't work at all for me....
186    'timeout'   => 20,
187    //'timeout' => 5
188 );
189
190 /////////////////////////////////////////////////////////////////////
191 //
192 // The next section controls how many old revisions of each page are
193 // kept in the database.
194 //
195 // There are two basic classes of revisions: major and minor. Which
196 // class a revision belongs in is determined by whether the author
197 // checked the "this is a minor revision" checkbox when they saved the
198 // page.
199 // 
200 // There is, additionally, a third class of revisions: author
201 // revisions. The most recent non-mergable revision from each distinct
202 // author is and author revision.
203 //
204 // The expiry parameters for each of those three classes of revisions
205 // can be adjusted seperately. For each class there are five
206 // parameters (usually, only two or three of the five are actually
207 // set) which control how long those revisions are kept in the
208 // database.
209 //
210 //   max_keep: If set, this specifies an absolute maximum for the
211 //             number of archived revisions of that class. This is
212 //             meant to be used as a safety cap when a non-zero
213 //             min_age is specified. It should be set relatively high,
214 //             and it's purpose is to prevent malicious or accidental
215 //             database overflow due to someone causing an
216 //             unreasonable number of edits in a short period of time.
217 //
218 //   min_age:  Revisions younger than this (based upon the supplanted
219 //             date) will be kept unless max_keep is exceeded. The age
220 //             should be specified in days. It should be a
221 //             non-negative, real number,
222 //
223 //   min_keep: At least this many revisions will be kept.
224 //
225 //   keep:     No more than this many revisions will be kept.
226 //
227 //   max_age:  No revision older than this age will be kept.
228 //
229 // Supplanted date: Revisions are timestamped at the instant that they
230 // cease being the current revision. Revision age is computed using
231 // this timestamp, not the edit time of the page.
232 //
233 // Merging: When a minor revision is deleted, if the preceding
234 // revision is by the same author, the minor revision is merged with
235 // the preceding revision before it is deleted. Essentially: this
236 // replaces the content (and supplanted timestamp) of the previous
237 // revision with the content after the merged minor edit, the rest of
238 // the page metadata for the preceding version (summary, mtime, ...)
239 // is not changed.
240 //
241 // Keep up to 8 major edits, but keep them no longer than a month.
242 $ExpireParams['major'] = array('max_age' => 32,
243                                'keep'    => 8);
244 // Keep up to 4 minor edits, but keep them no longer than a week.
245 $ExpireParams['minor'] = array('max_age' => 7,
246                                'keep'    => 4);
247 // Keep the latest contributions of the last 8 authors up to a year.
248 // Additionally, (in the case of a particularly active page) try to
249 // keep the latest contributions of all authors in the last week (even
250 // if there are more than eight of them,) but in no case keep more
251 // than twenty unique author revisions.
252 $ExpireParams['author'] = array('max_age'  => 365,
253                                 'keep'     => 8,
254                                 'min_age'  => 7,
255                                 'max_keep' => 20);
256
257 /////////////////////////////////////////////////////////////////////
258 // 
259 // Part Three:
260 // Page appearance and layout
261 //
262 /////////////////////////////////////////////////////////////////////
263
264 /* THEME
265  *
266  * Most of the page appearance is controlled by files in the theme
267  * subdirectory.
268  *
269  * There are a number of pre-defined themes shipped with PhpWiki.
270  * Or you may create your own (e.g. by copying and then modifying one of
271  * stock themes.)
272  *
273  * Pick one.
274  */
275 //define('THEME', 'default');
276 //define('THEME', 'Hawaiian');
277 //define('THEME', 'MacOSX');
278 //define('THEME', 'WikiTrek');
279
280 // Select a valid charset name to be inserted into the xml/html pages,
281 // and to reference links to the stylesheets (css). For more info see:
282 // <http://www.iana.org/assignments/character-sets>. Note that PhpWiki
283 // has been extensively tested only with the latin1 (iso-8859-1)
284 // character set.
285 //
286 // If you change the default from iso-8859-1 PhpWiki may not work
287 // properly and it will require code modifications. However, character
288 // sets similar to iso-8859-1 may work with little or no modification
289 // depending on your setup. The database must also support the same
290 // charset, and of course the same is true for the web browser. (Some
291 // work is in progress hopefully to allow more flexibility in this
292 // area in the future).
293 define("CHARSET", "iso-8859-1");
294
295 // Select your language/locale - default language is "C" for English.
296 // Other languages available:
297 // English "C"  (English    - HomePage)
298 // Dutch   "nl" (Nederlands - ThuisPagina)
299 // Spanish "es" (Español    - PáginaPrincipal)
300 // French  "fr" (Français   - Accueil)
301 // German  "de" (Deutsch    - StartSeite)
302 // Swedish "sv" (Svenska    - Framsida)
303 // Italian "it" (Italiano   - PaginaPrincipale)
304 //
305 // If you set $LANG to the empty string, your systems default language
306 // (as determined by the applicable environment variables) will be
307 // used.
308 //
309 // Note that on some systems, apprently using these short forms for
310 // the locale won't work. On my home system 'LANG=de' won't result in
311 // german pages. Somehow the system must recognize the locale as a
312 // valid locale before gettext() will work, i.e., use 'de_DE',
313 // 'nl_NL'.
314 $LANG='C';
315 //$LANG='nl_NL';
316
317 // Setting the LANG environment variable (accomplished above) may or
318 // may not be sufficient to cause PhpWiki to produce dates in your
319 // native language. (It depends on the configuration of the operating
320 // system on your http server.)  The problem is that, e.g. 'de' is
321 // often not a valid locale.
322 //
323 // A standard locale name is typically of  the  form
324 // language[_territory][.codeset][@modifier],  where  language is
325 // an ISO 639 language code, territory is an ISO 3166 country code,
326 // and codeset  is  a  character  set or encoding identifier like
327 // ISO-8859-1 or UTF-8.
328 //
329 // You can tailor the locale used for time and date formatting by
330 // setting the LC_TIME environment variable. You'll have to experiment
331 // to find the correct setting:
332 //putenv('LC_TIME=de_DE');
333
334
335 /* WIKI_PGSRC -- specifies the source for the initial page contents of
336  * the Wiki. The setting of WIKI_PGSRC only has effect when the wiki is
337  * accessed for the first time (or after clearing the database.)
338  * WIKI_PGSRC can either name a directory or a zip file. In either case
339  * WIKI_PGSRC is scanned for files -- one file per page.
340  */
341 define('WIKI_PGSRC', "pgsrc"); // Default (old) behavior.
342 //define('WIKI_PGSRC', 'wiki.zip'); // New style.
343 //define('WIKI_PGSRC', '../../../Logs/Hamwiki/hamwiki-20010830.zip'); // New style.
344
345 /*
346  * DEFAULT_WIKI_PGSRC is only used when the language is *not* the
347  * default (English) and when reading from a directory: in that case
348  * some English pages are inserted into the wiki as well.
349  * DEFAULT_WIKI_PGSRC defines where the English pages reside.
350  */
351 // FIXME: is this really needed?  Can't we just copy these pages into
352 // the localized pgsrc?
353 define('DEFAULT_WIKI_PGSRC', "pgsrc");
354 // These are the pages which will get loaded from DEFAULT_WIKI_PGSRC.   
355 $GenericPages = array("ReleaseNotes", "SteveWainstead", "TestPage");
356
357 /////////////////////////////////////////////////////////////////////
358 //
359 // Part four:
360 // Mark-up options.
361 // 
362 /////////////////////////////////////////////////////////////////////
363
364 // allowed protocols for links - be careful not to allow "javascript:"
365 // URL of these types will be automatically linked.
366 // within a named link [name|uri] one more protocol is defined: phpwiki
367 $AllowedProtocols = "http|https|mailto|ftp|news|nntp|ssh|gopher";
368
369 // URLs ending with the following extension should be inlined as images
370 $InlineImages = "png|jpg|gif|tiff|tif";
371
372 // Uncomment this to automatically split WikiWords by inserting spaces.
373 // The default is to leave WordsSmashedTogetherLikeSo in the body text.
374 //define("autosplit_wikiwords", 1);
375
376 // Perl regexp for WikiNames ("bumpy words")
377 // (?<!..) & (?!...) used instead of '\b' because \b matches '_' as well
378 $WikiNameRegexp = "(?<![[:alnum:]])([[:upper:]][[:lower:]]+){2,}(?![[:alnum:]])";
379
380 // InterWiki linking -- wiki-style links to other wikis on the web
381 //
382 // Intermap file for InterWikiLinks -- define other wikis there
383 // Leave this undefined to disable InterWiki linking.
384 define('INTERWIKI_MAP_FILE', "lib/interwiki.map");
385
386
387 /////////////////////////////////////////////////////////////////////
388 //
389 // Part five:
390 // URL options -- you can probably skip this section.
391 //
392 /////////////////////////////////////////////////////////////////////
393 /******************************************************************
394  *
395  * The following section contains settings which you can use to tailor
396  * the URLs which PhpWiki generates.
397  *
398  * Any of these parameters which are left undefined will be deduced
399  * automatically. You need only set them explicitly if the
400  * auto-detected values prove to be incorrect.
401  *
402  * In most cases the auto-detected values should work fine, so
403  * hopefully you don't need to mess with this section.
404  *
405  ******************************************************************/
406
407 /*
408  * Canonical name and httpd port of the server on which this PhpWiki
409  * resides.
410  */
411 //define('SERVER_NAME', 'some.host.com');
412 //define('SERVER_PORT', 80);
413
414 /*
415  * Relative URL (from the server root) of the PhpWiki
416  * script.
417  */
418 //define('SCRIPT_NAME', '/some/where/index.php');
419
420 /*
421  * URL of the PhpWiki install directory.  (You only need to set this
422  * if you've moved index.php out of the install directory.)  This can
423  * be either a relative URL (from the directory where the top-level
424  * PhpWiki script is) or an absolute one.
425  */
426 //define('DATA_PATH', '/some/where/phpwiki');
427
428 /*
429  * Path to the PhpWiki install directory.  This is the local
430  * filesystem counterpart to DATA_PATH.  (If you have to set
431  * DATA_PATH, your probably have to set this as well.)  This can be
432  * either an absolute path, or a relative path interpreted from the
433  * directory where the top-level PhpWiki script (normally index.php)
434  * resides.
435  */
436 //define('PHPWIKI_DIR', '/htdocs/some/where/phpwiki');
437
438
439 /*
440  * Define to 'true' to use PATH_INFO to pass the pagename's.
441  * e.g. http://www.some.where/index.php/HomePage instead
442  * of http://www.some.where/index.php?pagename=HomePage
443  * FIXME: more docs (maybe in README).
444  */
445 //define('USE_PATH_INFO', false);
446
447 /*
448  * VIRTUAL_PATH is the canonical URL path under which your your wiki
449  * appears. Normally this is the same as dirname(SCRIPT_NAME), however
450  * using, e.g. apaches mod_actions (or mod_rewrite), you can make it
451  * something different.
452  *
453  * If you do this, you should set VIRTUAL_PATH here.
454  *
455  * E.g. your phpwiki might be installed at at /scripts/phpwiki/index.php,
456  * but  * you've made it accessible through eg. /wiki/HomePage.
457  *
458  * One way to do this is to create a directory named 'wiki' in your
459  * server root. The directory contains only one file: an .htaccess
460  * file which reads something like:
461  *
462  *    Action x-phpwiki-page /scripts/phpwiki/index.php
463  *    SetHandler x-phpwiki-page
464  *    DirectoryIndex /scripts/phpwiki/index.php
465  *
466  * In that case you should set VIRTUAL_PATH to '/wiki'.
467  *
468  * (VIRTUAL_PATH is only used if USE_PATH_INFO is true.)
469  */
470 //define('VIRTUAL_PATH', '/SomeWiki');
471
472
473 ////////////////////////////////////////////////////////////////
474 // Okay... fire up the code:
475 ////////////////////////////////////////////////////////////////
476
477 include "lib/main.php";
478
479 // (c-file-style: "gnu")
480 // Local Variables:
481 // mode: php
482 // tab-width: 8
483 // c-basic-offset: 4
484 // c-hanging-comment-ender-p: nil
485 // indent-tabs-mode: nil
486 // End:   
487 ?>