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