]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - index.php
Added a comment regarding the table name prefix as a precaution to
[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.19 2001-07-12 03:49:05 wainstead 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 for filenames or table names
89    /* 
90     * currently you MUST EDIT THE SQL file too (in the schemas/ directory
91     * because we aren't doing on the fly sql generation during the
92     * installation.
93    */
94    'prefix' => 'phpwiki_',
95    
96    // Used by 'dbm', 'dba', 'file'
97    'directory' => "/tmp",
98
99    // 'dbm' and 'dba create files named "$directory/${database}{$prefix}*".
100    // 'file' creates files named "$directory/${database}/{$prefix}*/*".
101    // The sql types use tables named "{$prefix}*"
102    
103    // Used by 'dbm', 'dba'
104    'timeout' => 20,
105    
106    // Used by *sql as neccesary to log in to server:
107    'server'   => 'localhost',
108    'port'     => '',
109    'socket'   => '',
110    'user'     => 'guest',
111    'password' => ''
112 );
113
114
115 /////////////////////////////////////////////////////////////////////
116 // 
117 // Part Three:
118 // Page appearance and layout
119 //
120 /////////////////////////////////////////////////////////////////////
121
122 // Select your language/locale - default language "C": English
123 // other languages available: Dutch "nl", Spanish "es", German "de",
124 // Swedish "sv", and Italian, "it".
125 //
126 // Note that on some systems, apprently using these short forms for
127 // the locale won't work.  On my home system 'LANG=de' won't result
128 // in german pages.  Somehow the system must recognize the locale
129 // as a valid locale before gettext() will work, i.e., use 'de_DE',
130 // 'nl_NL'.
131 $LANG='C';
132 //$LANG='nl_NL';
133
134 // Setting the LANG environment variable (accomplished above) may or
135 // may not be sufficient to cause PhpWiki to produce dates in your
136 // native language.  (It depends on the configuration of the operating
137 // system on your http server.)  The problem is that, e.g. 'de' is
138 // often not a valid locale.
139 //
140 // A standard locale name is typically of  the  form
141 // language[_territory][.codeset][@modifier],  where  language is
142 // an ISO 639 language code, territory is an ISO 3166 country code,
143 // and codeset  is  a  character  set or encoding identifier like
144 // ISO-8859-1 or UTF-8.
145 //
146 // You can tailor the locale used for time and date formatting by setting
147 // the LC_TIME environment variable.  You'll have to experiment to find
148 // the correct setting:
149 //putenv('LC_TIME=de_DE');
150
151 // If you specify a relative URL for the CSS and images,
152 // the are interpreted relative to DATA_PATH (see below).
153 // (The default value of DATA_PATH is the directory in which
154 // index.php (this file) resides.)
155
156 // CSS location
157 define("CSS_URL", "phpwiki.css");
158
159 // logo image (path relative to index.php)
160 $logo = "images/wikibase.png";
161
162 // Signature image which is shown after saving an edited page
163 // If this is left blank (or unset), the signature will be omitted.
164 //$SignatureImg = "images/signature.png";
165
166 // Date & time formats used to display modification times, etc.
167 // Formats are given as format strings to PHP strftime() function
168 // See http://www.php.net/manual/en/function.strftime.php for details.
169 $datetimeformat = "%B %e, %Y";  // may contain time of day
170 $dateformat = "%B %e, %Y";      // must not contain time
171
172 // this defines how many page names to list when displaying
173 // the MostPopular pages; the default is to show the 20 most popular pages
174 define("MOST_POPULAR_LIST_LENGTH", 20);
175
176 // this defines how many page names to list when displaying related pages
177 define("NUM_RELATED_PAGES", 5);
178
179 // Template files (filenames are relative to script position)
180 // However, if a LANG is set, they we be searched for in a locale
181 // specific location first.
182 $templates = array("BROWSE" =>    "templates/browse.html",
183                    "EDITPAGE" =>  "templates/editpage.html",
184                    "MESSAGE" =>   "templates/message.html");
185
186 /* WIKI_PGSRC -- specifies the source for the initial page contents
187  * of the Wiki.  The setting of WIKI_PGSRC only has effect when
188  * the wiki is accessed for the first time (or after clearing the
189  * database.) WIKI_PGSRC can either name a directory or a zip file.
190  * In either case WIKI_PGSRC is scanned for files --- one file per page.
191  */
192 define('WIKI_PGSRC', "pgsrc"); // Default (old) behavior.
193 //define('WIKI_PGSRC', 'wiki.zip'); // New style.
194
195 // DEFAULT_WIKI_PGSRC is only used when the language is *not*
196 // the default (English) and when reading from a directory:
197 // in that case some English pages are inserted into the wiki as well
198 // DEFAULT_WIKI_PGSRC defines where the English pages reside 
199 // FIXME: is this really needed?  Can't we just copy
200 //  these pages into the localized pgsrc?
201 define('DEFAULT_WIKI_PGSRC', "pgsrc");
202 // These are the pages which will get loaded from DEFAULT_WIKI_PGSRC.   
203 $GenericPages = array("ReleaseNotes", "SteveWainstead", "TestPage");
204
205 /////////////////////////////////////////////////////////////////////
206 //
207 // Part four:
208 // Mark-up options.
209 // 
210 /////////////////////////////////////////////////////////////////////
211
212 // allowed protocols for links - be careful not to allow "javascript:"
213 // URL of these types will be automatically linked.
214 // within a named link [name|uri] one more protocol is defined: phpwiki
215 $AllowedProtocols = "http|https|mailto|ftp|news|gopher";
216
217 // URLs ending with the following extension should be inlined as images
218 $InlineImages = "png|jpg|gif";
219
220 // Perl regexp for WikiNames ("bumpy words")
221 // (?<!..) & (?!...) used instead of '\b' because \b matches '_' as well
222 $WikiNameRegexp = "(?<![[:alnum:]])([[:upper:]][[:lower:]]+){2,}(?![[:alnum:]])";
223
224 // InterWiki linking -- wiki-style links to other wikis on the web
225 //
226 // Intermap file for InterWikiLinks -- define other wikis there
227 // Leave this undefined to disable InterWiki linking.
228 define('INTERWIKI_MAP_FILE', "lib/interwiki.map");
229
230 /////////////////////////////////////////////////////////////////////
231 //
232 // Part five:
233 // URL options -- you can probably skip this section.
234 //
235 /////////////////////////////////////////////////////////////////////
236 /******************************************************************
237  *
238  * The following section contains settings which you can use to tailor
239  * the URLs which PhpWiki generates. 
240  *
241  * Any of these parameters which are left undefined will be
242  * deduced automatically.  You need only set them explicitly
243  * if the auto-detected values prove to be incorrect.
244  *
245  * In most cases the auto-detected values should work fine,
246  * so hopefully you don't need to mess with this section.
247  *
248  ******************************************************************/
249
250 /*
251  * Canonical name and httpd port of the server on which this
252  * PhpWiki resides.
253  */
254 //define('SERVER_NAME', 'some.host.com');
255 //define('SERVER_PORT', 80);
256
257 /*
258  * Absolute URL (from the server root) of the PhpWiki
259  * script.
260  */
261 //define('SCRIPT_NAME', '/some/where/index.php');
262
263 /*
264  * Absolute URL (from the server root) of the directory
265  * in which relative URL's for images and other support files
266  * are interpreted.
267  */
268 //define('DATA_PATH', '/some/where');
269
270 /*
271  * Define to 'true' to use PATH_INFO to pass the pagename's.
272  * e.g. http://www.some.where/index.php/HomePage instead
273  * of http://www.some.where/index.php?pagename=HomePage
274  * FIXME: more docs (maybe in README).
275  */
276 //define('USE_PATH_INFO', false);
277
278 /*
279  * VIRTUAL_PATH is the canonical URL path under which your
280  * your wiki appears.  Normally this is the same as
281  * dirname(SCRIPT_NAME), however using, e.g. apaches mod_actions
282  * (or mod_rewrite), you can make it something different.
283  *
284  * If you do this, you should set VIRTUAL_PATH here.
285  *
286  * E.g. your phpwiki might be installed at at /scripts/phpwiki/index.php,
287  * but  * you've made it accessible through eg. /wiki/HomePage.
288  *
289  * One way to do this is to create a directory named 'wiki' in your
290  * server root.  The directory contains only one file: an .htaccess
291  * file which reads something like:
292  *
293  *    Action x-phpwiki-page /scripts/phpwiki/index.php
294  *    SetHandler x-phpwiki-page
295  *    DirectoryIndex /scripts/phpwiki/index.php
296  *
297  * In that case you should set VIRTUAL_PATH to '/wiki'.
298  *
299  * (VIRTUAL_PATH is only used if USE_PATH_INFO is true.)
300  */
301 //define('VIRTUAL_PATH', '/SomeWiki');
302
303
304 ////////////////////////////////////////////////////////////////
305 // Okay... fire up the code:
306 ////////////////////////////////////////////////////////////////
307
308 include "lib/main.php";
309
310 // For emacs users
311 // Local Variables:
312 // mode: php
313 // c-file-style: "ellemtel"
314 // End:   
315 ?>