Initial revision
[lhc/web/wiklou.git] / includes / DefaultSettings.php
1 <?
2 # DO NOT EDIT THIS FILE!
3 # To customize your installation, edit "LocalSettings.php".
4
5 $wgServer = "http://" . getenv( "SERVER_NAME" );
6 $wgScriptPath = "/wiki";
7 $wgScript = "{$wgScriptPath}/wiki.phtml";
8 $wgRedirectScript = "{$wgScriptPath}/redirect.phtml";
9 $wgStyleSheetPath = "{$wgScriptPath}/style";
10 $wgStyleSheetDirectory = "{$IP}/style";
11 $wgArticlePath = "{$wgScript}?title=$1";
12 $wgUploadPath = "{$wgScriptPath}/upload";
13 $wgUploadDirectory = "{$IP}/upload";
14 $wgLogo = "{$wgUploadPath}/wiki.png";
15 $wgMathPath = "{$wgUploadPath}/math";
16 $wgMathDirectory = "{$wgUploadDirectory}/math";
17 $wgTmpDirectory = "{$wgUploadDirectory}/tmp";
18 $wgEmergencyContact = "wikiadmin@" . getenv( "SERVER_NAME" );
19
20 # MySQL settings
21 #
22 $wgDBserver = "127.0.0.1";
23 $wgDBname = "wikidb";
24 $wgDBintlname = "intl";
25 $wgDBconnection = "";
26 $wgDBuser = "wikiuser";
27 $wgDBpassword = "userpass";
28 $wgDBsqluser = "sqluser";
29 $wgDBsqlpassword = "sqlpass";
30 $wgDBminWordLen = 4;
31 $wgDBtransactions = false; # Set to true if using InnoDB tables
32
33 # Language settings
34 #
35 $wgLanguageCode = "en";
36 $wgInterwikiMagic = true; # Treat language links as magic connectors, not inline links
37 $wgUseNewInterlanguage = false;
38 $wgInputEncoding = "ISO-8859-1";
39 $wgOutputEncoding = "ISO-8859-1";
40 $wgEditEncoding = "";
41 $wgDocType = "-//W3C//DTD HTML 4.01 Transitional//EN";
42 $wgAmericanDates = false; # Enable for English module to print dates
43 $wgLocalInterwiki = "w";
44
45 # Miscellaneous configuration settings
46 #
47 $wgReadOnlyFile = "{$wgUploadDirectory}/lock_yBgMBwiR";
48 $wgDebugLogFile = "{$wgUploadDirectory}/log_dlJbnMZb";
49 $wgDebugComments = false;
50 $wgReadOnly = false;
51
52 $wgCachePages = true; # Allow client-side caching of pages
53 $wgCookieExpiration = 2592000;
54
55 $wgAllowExternalImages = true;
56 $wgMiserMode = false; # Disable database-intensive features
57 $wgUseTeX = false;
58 $wgProfiling = false; # Enable for more detailed by-function times in debug log
59
60 # Which namespaces should support subpages?
61 # See Language.php for a list of namespaces.
62 #
63 $wgNamespacesWithSubpages = array( -1 => 0, 0 => 0, 1 => 1,
64 2 => 1, 3 => 1, 4 => 0, 5 => 1, 6 => 0, 7 => 1 );
65
66 ?>