]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - index.php
Revert $LANG back to being a global rather than an environment variable
[SourceForge/phpwiki.git] / index.php
1 <?php
2
3 /*
4   This is the starting file for PhpWiki. All this file does
5    is set configuration options, and at the end of the file 
6    it includes() the file lib/main.php, where the real action begins.
7
8    This file is divided into six parts: Parts Zero, One, Two, Three,
9    Four and Five. Each one has different configuration settings you 
10    can change; in all cases the default should work on your system, 
11    however, we recommend you tailor things to your particular setting.
12 */
13
14 /////////////////////////////////////////////////////////////////////
15 // Part Zero: If PHP needs help in finding where you installed the
16 //   rest of the PhpWiki code, you can set the include_path here.
17
18
19 //ini_set('include_path', '.:/where/you/installed/phpwiki');
20
21 /////////////////////////////////////////////////////////////////////
22 // Part Null: Don't touch this!
23
24 define ('PHPWIKI_VERSION', '1.3.0pre');
25 require "lib/prepend.php";
26 rcs_id('$Id: index.php,v 1.17 2001-05-31 17:39:01 dairiki Exp $');
27
28 /////////////////////////////////////////////////////////////////////
29 //
30 // Part One:
31 // Authentication and security settings:
32 // 
33 /////////////////////////////////////////////////////////////////////
34
35 // If set, we will perform reverse dns lookups to try to convert the users
36 // IP number to a host name, even if the http server didn't do it for us.
37 define('ENABLE_REVERSE_DNS', true);
38
39 // Username and password of administrator.
40 // Set these to your preferences. For heaven's sake
41 // pick a good password!
42 define('ADMIN_USER', "");
43 define('ADMIN_PASSWD', "");
44
45 // If true, only the admin user can make zip dumps, else
46 // zip dumps require no authentication.
47 define('ZIPDUMP_AUTH', false);
48
49 // The maximum file upload size.
50 define('MAX_UPLOAD_SIZE', 16 * 1024 * 1024);
51
52 // If the last edit is older than MINOR_EDIT_TIMEOUT seconds, the default
53 // state for the "minor edit" checkbox on the edit page form will be off.
54 define("MINOR_EDIT_TIMEOUT", 7 * 24 * 3600);
55
56 // Actions listed in this array will not be allowed.
57 //$DisabledActions = array('dumpserial', 'loadfile');
58
59 // PhpWiki can generate an access_log (in "NCSA combined log" format)
60 // for you.  If you want one, define this to the name of the log file.
61 define('ACCESS_LOG', '/tmp/wiki_access_log');
62
63 /////////////////////////////////////////////////////////////////////
64 //
65 // Part Two:
66 // Database Selection
67 //
68 /////////////////////////////////////////////////////////////////////
69
70 //
71 // This array holds the parameters which select the database to use.
72 //
73 // Not all of these parameters are used by any particular DB backend.
74 //
75 $DBParams = array(
76    // Select the database type:
77    // Uncomment one of these, or leave all commented for the default
78    // data base type ('dba' if supported, else 'dbm'.)
79    //'dbtype' => 'dba',
80    //'dbtype' => 'dbm',
81    //'dbtype' => 'mysql',
82    //'dbtype' => 'pgsql',
83    //'dbtype' => 'msql',
84    //'dbtype' => 'file',
85    
86    // Used by all DB types:
87    'database' => 'wiki',
88    'prefix' => '',      // prefix for filenames or table names
89    
90    // Used by 'dbm', 'dba', 'file'
91    'directory' => "/tmp",
92
93    // 'dbm' and 'dba create files named "$directory/${database}{$prefix}*".
94    // 'file' creates files named "$directory/${database}/{$prefix}*/*".
95    // The sql types use tables named "{$prefix}*"
96    
97    // Used by 'dbm', 'dba'
98    'timeout' => 20,
99    
100    // Used by *sql as neccesary to log in to server:
101    'server'   => 'localhost',
102    'port'     => '',
103    'socket'   => '',
104    'user'     => 'guest',
105    'password' => ''
106 );
107
108
109 /////////////////////////////////////////////////////////////////////
110 // 
111 // Part Three:
112 // Page appearance and layout
113 //
114 /////////////////////////////////////////////////////////////////////
115
116 // Select your language/locale - default language "C": English
117 // other languages available: Dutch "nl", Spanish "es", German "de",
118 // Swedish "sv", and Italian, "it".
119 //
120 // Note that on some systems, apprently using these short forms for
121 // the locale won't work.  On my home system 'LANG=de' won't result
122 // in german pages.  Somehow the system must recognize the locale
123 // as a valid locale before gettext() will work, i.e., use 'de_DE',
124 // 'nl_NL'.
125 $LANG='C';
126 //$LANG='nl_NL';
127
128 // Setting the LANG environment variable (accomplished above) may or
129 // may not be sufficient to cause PhpWiki to produce dates in your
130 // native language.  (It depends on the configuration of the operating
131 // system on your http server.)  The problem is that, e.g. 'de' is
132 // often not a valid locale.
133 //
134 // A standard locale name is typically of  the  form
135 // language[_territory][.codeset][@modifier],  where  language is
136 // an ISO 639 language code, territory is an ISO 3166 country code,
137 // and codeset  is  a  character  set or encoding identifier like
138 // ISO-8859-1 or UTF-8.
139 //
140 // You can tailor the locale used for time and date formatting by setting
141 // the LC_TIME environment variable.  You'll have to experiment to find
142 // the correct setting:
143 //putenv('LC_TIME=de_DE');
144
145 // If you specify a relative URL for the CSS and images,
146 // the are interpreted relative to DATA_PATH (see below).
147 // (The default value of DATA_PATH is the directory in which
148 // index.php (this file) resides.)
149
150 // CSS location
151 define("CSS_URL", "phpwiki.css");
152
153 // logo image (path relative to index.php)
154 $logo = "images/wikibase.png";
155
156 // Signature image which is shown after saving an edited page
157 // If this is left blank (or unset), the signature will be omitted.
158 //$SignatureImg = "images/signature.png";
159
160 // Date & time formats used to display modification times, etc.
161 // Formats are given as format strings to PHP strftime() function
162 // See http://www.php.net/manual/en/function.strftime.php for details.
163 $datetimeformat = "%B %e, %Y";  // may contain time of day
164 $dateformat = "%B %e, %Y";      // must not contain time
165
166 // this defines how many page names to list when displaying
167 // the MostPopular pages; the default is to show the 20 most popular pages
168 define("MOST_POPULAR_LIST_LENGTH", 20);
169
170 // this defines how many page names to list when displaying related pages
171 define("NUM_RELATED_PAGES", 5);
172
173 // Template files (filenames are relative to script position)
174 // However, if a LANG is set, they we be searched for in a locale
175 // specific location first.
176 $templates = array("BROWSE" =>    "templates/browse.html",
177                    "EDITPAGE" =>  "templates/editpage.html",
178                    "MESSAGE" =>   "templates/message.html");
179
180 /* WIKI_PGSRC -- specifies the source for the initial page contents
181  * of the Wiki.  The setting of WIKI_PGSRC only has effect when
182  * the wiki is accessed for the first time (or after clearing the
183  * database.) WIKI_PGSRC can either name a directory or a zip file.
184  * In either case WIKI_PGSRC is scanned for files --- one file per page.
185  */
186 define('WIKI_PGSRC', "pgsrc"); // Default (old) behavior.
187 //define('WIKI_PGSRC', 'wiki.zip'); // New style.
188
189 // DEFAULT_WIKI_PGSRC is only used when the language is *not*
190 // the default (English) and when reading from a directory:
191 // in that case some English pages are inserted into the wiki as well
192 // DEFAULT_WIKI_PGSRC defines where the English pages reside 
193 // FIXME: is this really needed?  Can't we just copy
194 //  these pages into the localized pgsrc?
195 define('DEFAULT_WIKI_PGSRC', "pgsrc");
196 // These are the pages which will get loaded from DEFAULT_WIKI_PGSRC.   
197 $GenericPages = array("ReleaseNotes", "SteveWainstead", "TestPage");
198
199 /////////////////////////////////////////////////////////////////////
200 //
201 // Part four:
202 // Mark-up options.
203 // 
204 /////////////////////////////////////////////////////////////////////
205
206 // allowed protocols for links - be careful not to allow "javascript:"
207 // URL of these types will be automatically linked.
208 // within a named link [name|uri] one more protocol is defined: phpwiki
209 $AllowedProtocols = "http|https|mailto|ftp|news|gopher";
210
211 // URLs ending with the following extension should be inlined as images
212 $InlineImages = "png|jpg|gif";
213
214 // Perl regexp for WikiNames ("bumpy words")
215 // (?<!..) & (?!...) used instead of '\b' because \b matches '_' as well
216 $WikiNameRegexp = "(?<![[:alnum:]])([[:upper:]][[:lower:]]+){2,}(?![[:alnum:]])";
217
218 // InterWiki linking -- wiki-style links to other wikis on the web
219 //
220 // Intermap file for InterWikiLinks -- define other wikis there
221 // Leave this undefined to disable InterWiki linking.
222 define('INTERWIKI_MAP_FILE', "lib/interwiki.map");
223
224 /////////////////////////////////////////////////////////////////////
225 //
226 // Part five:
227 // URL options -- you can probably skip this section.
228 //
229 /////////////////////////////////////////////////////////////////////
230 /******************************************************************
231  *
232  * The following section contains settings which you can use to tailor
233  * the URLs which PhpWiki generates. 
234  *
235  * Any of these parameters which are left undefined will be
236  * deduced automatically.  You need only set them explicitly
237  * if the auto-detected values prove to be incorrect.
238  *
239  * In most cases the auto-detected values should work fine,
240  * so hopefully you don't need to mess with this section.
241  *
242  ******************************************************************/
243
244 /*
245  * Canonical name and httpd port of the server on which this
246  * PhpWiki resides.
247  */
248 //define('SERVER_NAME', 'some.host.com');
249 //define('SERVER_PORT', 80);
250
251 /*
252  * Absolute URL (from the server root) of the PhpWiki
253  * script.
254  */
255 //define('SCRIPT_NAME', '/some/where/index.php');
256
257 /*
258  * Absolute URL (from the server root) of the directory
259  * in which relative URL's for images and other support files
260  * are interpreted.
261  */
262 //define('DATA_PATH', '/some/where');
263
264 /*
265  * Define to 'true' to use PATH_INFO to pass the pagename's.
266  * e.g. http://www.some.where/index.php/HomePage instead
267  * of http://www.some.where/index.php?pagename=HomePage
268  * FIXME: more docs (maybe in README).
269  */
270 //define('USE_PATH_INFO', false);
271
272 /*
273  * VIRTUAL_PATH is the canonical URL path under which your
274  * your wiki appears.  Normally this is the same as
275  * dirname(SCRIPT_NAME), however using, e.g. apaches mod_actions
276  * (or mod_rewrite), you can make it something different.
277  *
278  * If you do this, you should set VIRTUAL_PATH here.
279  *
280  * E.g. your phpwiki might be installed at at /scripts/phpwiki/index.php,
281  * but  * you've made it accessible through eg. /wiki/HomePage.
282  *
283  * One way to do this is to create a directory named 'wiki' in your
284  * server root.  The directory contains only one file: an .htaccess
285  * file which reads something like:
286  *
287  *    Action x-phpwiki-page /scripts/phpwiki/index.php
288  *    SetHandler x-phpwiki-page
289  *    DirectoryIndex /scripts/phpwiki/index.php
290  *
291  * In that case you should set VIRTUAL_PATH to '/wiki'.
292  *
293  * (VIRTUAL_PATH is only used if USE_PATH_INFO is true.)
294  */
295 //define('VIRTUAL_PATH', '/SomeWiki');
296
297
298 ////////////////////////////////////////////////////////////////
299 // Okay... fire up the code:
300 ////////////////////////////////////////////////////////////////
301
302 include "lib/main.php";
303
304 // For emacs users
305 // Local Variables:
306 // mode: php
307 // c-file-style: "ellemtel"
308 // End:   
309 ?>