]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - wiki_config.php3
Upped the size of the "searchterms" field.
[SourceForge/phpwiki.git] / wiki_config.php3
1 <!-- $Id: wiki_config.php3,v 1.11 2000-06-25 03:46:18 wainstead Exp $ -->
2 <?
3    /*
4       Constants and settings. Edit the values below for
5       your site. You need two image files, a banner and 
6       a signature. The dbm file MUST be writable by the
7       web server or this won't work. If you configure your
8       server to allow index.php3 as an index file, you 
9       can just give the URL without the script name.
10    */
11
12    // You should set the $ServerAddress as below, and comment out
13    // the if/else below.
14    $ServerAddress = "http://127.0.0.1:8080/phpwiki/";
15
16 /*
17    if (preg_match("#(.*?)([^/]*$)#", $REQUEST_URI, $matches)) {
18       $ServerAddress = "http://$SERVER_NAME:$SERVER_PORT" . $matches[1];
19    } else {
20       $ServerAddress = "http://$SERVER_NAME:$SERVER_PORT$REQUEST_URI";
21    }
22 */
23    // if you are using MySQL instead of a DBM to store your
24    // Wiki pages, use wiki_mysql.php3 instead of wiki_dbmlib.php3
25    // See INSTALL.mysql for details on using MySQL
26
27    // if you are using Postgressl instead of a DBM to store your
28    // Wiki pages, use wiki_pgsql.php3 instead of wiki_dbmlib.php3
29    // See INSTALL.pgsql for details on using Postgresql
30
31    // DBM settings (default)
32    include "wiki_dbmlib.php3";
33    $WikiDataBase = "/tmp/wikidb"; // must be server-writable!
34    $ArchiveDataBase = "/tmp/wikiarchive"; // see above!
35
36    // MySQL settings (thanks Arno Hollosi! <ahollosi@iname.com>)
37    // Comment out the lines above (for the DBM) if you use these
38
39 /*   include "wiki_mysql.php3";
40    $WikiDataBase = "wiki";
41    $ArchiveDataBase = "archive";
42    $mysql_server = 'localhost';
43    $mysql_user = 'root';
44    $mysql_pwd = '';
45    $mysql_db = 'wiki';
46 */
47
48 /*
49    // PostgreSQL settings. 
50    include "wiki_pgsql.php3";
51    $WikiDataBase = "wiki";
52    $ArchiveDataBase = "archive";
53    $pg_dbhost    = "localhost";
54    $pg_dbport    = "5432";
55 */
56
57 /*
58    // MiniSQL (mSQL) settings.
59    include "wiki_msql.php3";
60    $msql_db = "wiki";
61    $WikiDataBase = "wiki";
62    $ArchiveDataBase = "archive";
63 */
64
65
66    $ScriptName = "index.php3";
67
68
69    // Template files (filenames are relative to script position)
70    $templates = array(
71         "BROWSE" => "templates/browse.html",
72         "EDITPAGE" => "templates/editpage.html",
73         "EDITLINKS" => "templates/editlinks.html",
74         "MESSAGE" => "templates/message.html"
75         );
76
77    $SignatureImg = "$ServerAddress/signature.png";
78    $logo = "wikibase.png";
79
80    // date & time formats used to display modification times, etc.
81    // formats are given as format strings to PHP date() function
82    $datetimeformat = "F j, Y";  // may contain time of day
83    $dateformat = "F j, Y";      // must not contain time
84
85    // allowed protocols for links - be careful not to allow "javscript:"
86    $AllowedProtocols = "http|https|mailto|ftp|news|gopher";
87    
88    // you shouldn't have to edit anyting below this line
89
90    $ScriptUrl = $ServerAddress . $ScriptName;
91    $LogoImage = "<img src='${ServerAddress}$logo' border='0'>";
92    $LogoImage = "<a href='$ScriptUrl'>$LogoImage</a>";
93
94    $FieldSeparator = "\263";
95
96    // Apache won't show REMOTE_HOST unless the admin configured it
97    // properly. We'll be nice and see if it's there.
98    empty($REMOTE_HOST) ?
99       ($remoteuser = $REMOTE_ADDR) : ($remoteuser = $REMOTE_HOST);
100
101
102    // number of user-defined external links, i.e. "[1]"
103    define("NUM_LINKS", 12);
104
105    // try this many times if the dbm is unavailable
106    define("MAX_DBM_ATTEMPTS", 20);
107
108    // constants used for HTML output. List tags like UL and 
109    // OL have a depth of one, PRE has a depth of 0.
110    define("ZERO_DEPTH", 0);
111    define("SINGLE_DEPTH", 1);
112
113 ?>