2003-04-14 23:10:40 +00:00
|
|
|
<?
|
|
|
|
|
# DO NOT EDIT THIS FILE!
|
|
|
|
|
# To customize your installation, edit "LocalSettings.php".
|
2003-05-01 00:19:49 +00:00
|
|
|
# Note that since all these string interpolations are expanded
|
|
|
|
|
# before LocalSettings is included, if you localize something
|
|
|
|
|
# like $wgScriptPath, you must also localize everything that
|
|
|
|
|
# depends on it.
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$wgServer = "http://" . getenv( "SERVER_NAME" );
|
|
|
|
|
$wgScriptPath = "/wiki";
|
|
|
|
|
$wgScript = "{$wgScriptPath}/wiki.phtml";
|
|
|
|
|
$wgRedirectScript = "{$wgScriptPath}/redirect.phtml";
|
|
|
|
|
$wgStyleSheetPath = "{$wgScriptPath}/style";
|
|
|
|
|
$wgStyleSheetDirectory = "{$IP}/style";
|
|
|
|
|
$wgArticlePath = "{$wgScript}?title=$1";
|
|
|
|
|
$wgUploadPath = "{$wgScriptPath}/upload";
|
|
|
|
|
$wgUploadDirectory = "{$IP}/upload";
|
|
|
|
|
$wgLogo = "{$wgUploadPath}/wiki.png";
|
|
|
|
|
$wgMathPath = "{$wgUploadPath}/math";
|
|
|
|
|
$wgMathDirectory = "{$wgUploadDirectory}/math";
|
|
|
|
|
$wgTmpDirectory = "{$wgUploadDirectory}/tmp";
|
|
|
|
|
$wgEmergencyContact = "wikiadmin@" . getenv( "SERVER_NAME" );
|
|
|
|
|
|
|
|
|
|
# MySQL settings
|
|
|
|
|
#
|
2003-04-16 07:30:52 +00:00
|
|
|
$wgDBserver = "localhost";
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgDBname = "wikidb";
|
|
|
|
|
$wgDBintlname = "intl";
|
|
|
|
|
$wgDBconnection = "";
|
|
|
|
|
$wgDBuser = "wikiuser";
|
|
|
|
|
$wgDBpassword = "userpass";
|
|
|
|
|
$wgDBsqluser = "sqluser";
|
|
|
|
|
$wgDBsqlpassword = "sqlpass";
|
|
|
|
|
$wgDBminWordLen = 4;
|
|
|
|
|
$wgDBtransactions = false; # Set to true if using InnoDB tables
|
2003-06-03 08:44:50 +00:00
|
|
|
$wgDBmysql4 = false; # Set to true to use enhanced fulltext search
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
# Language settings
|
|
|
|
|
#
|
|
|
|
|
$wgLanguageCode = "en";
|
|
|
|
|
$wgInterwikiMagic = true; # Treat language links as magic connectors, not inline links
|
|
|
|
|
$wgUseNewInterlanguage = false;
|
|
|
|
|
$wgInputEncoding = "ISO-8859-1";
|
|
|
|
|
$wgOutputEncoding = "ISO-8859-1";
|
|
|
|
|
$wgEditEncoding = "";
|
|
|
|
|
$wgDocType = "-//W3C//DTD HTML 4.01 Transitional//EN";
|
2003-06-27 07:30:33 +00:00
|
|
|
$wgDTD = "http://www.w3.org/TR/html4/loose.dtd";
|
2003-07-09 04:47:12 +00:00
|
|
|
$wgUseDynamicDates = false; # Enable to allow rewriting dates in page text
|
|
|
|
|
$wgAmericanDates = false; # Enable for English module to print dates
|
|
|
|
|
# as eg 'May 12' instead of '12 May'
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgLocalInterwiki = "w";
|
2003-05-16 13:39:22 +00:00
|
|
|
$wgShowIPinHeader = true; # For non-logged in users
|
2003-07-10 12:50:28 +00:00
|
|
|
$wgUseDynamicDates = true; # Allows the user to pick their preferred date format
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
# Miscellaneous configuration settings
|
|
|
|
|
#
|
|
|
|
|
$wgReadOnlyFile = "{$wgUploadDirectory}/lock_yBgMBwiR";
|
|
|
|
|
$wgDebugLogFile = "{$wgUploadDirectory}/log_dlJbnMZb";
|
|
|
|
|
$wgDebugComments = false;
|
|
|
|
|
$wgReadOnly = false;
|
2003-06-24 19:27:21 +00:00
|
|
|
$wgSqlLogFile = "{$wgUploadDirectory}/sqllog_mFhyRe6";
|
|
|
|
|
$wgLogQueries = false;
|
2003-07-10 12:50:28 +00:00
|
|
|
$wgUseBetterLinksUpdate = true;
|
|
|
|
|
|
2003-08-05 11:04:02 +00:00
|
|
|
# If wgWhitelistEdit is set to true, only logged in users
|
|
|
|
|
# are allowed to edit articles.
|
|
|
|
|
# $wgWhitelistEdit = true;
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2003-05-16 13:39:22 +00:00
|
|
|
# Client-side caching:
|
|
|
|
|
$wgCachePages = true; # Allow client-side caching of pages
|
|
|
|
|
|
|
|
|
|
# Set this to current time to invalidate all prior cached pages.
|
|
|
|
|
# Affects both client- and server-side caching.
|
|
|
|
|
$wgCacheEpoch = "20030516000000";
|
|
|
|
|
|
|
|
|
|
# Server-side caching:
|
|
|
|
|
# This will cache static pages for non-logged-in users
|
|
|
|
|
# to reduce database traffic on public sites.
|
|
|
|
|
# Must set $wgShowIPinHeader = false
|
|
|
|
|
$wgUseFileCache = false;
|
|
|
|
|
$wgFileCacheDirectory = "{$wgUploadDirectory}/cache";
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgCookieExpiration = 2592000;
|
|
|
|
|
|
|
|
|
|
$wgAllowExternalImages = true;
|
|
|
|
|
$wgMiserMode = false; # Disable database-intensive features
|
|
|
|
|
$wgUseTeX = false;
|
|
|
|
|
$wgProfiling = false; # Enable for more detailed by-function times in debug log
|
|
|
|
|
|
2003-05-20 09:30:40 +00:00
|
|
|
# We can serve pages compressed in order to save bandwidth,
|
|
|
|
|
# but this will increase CPU usage.
|
|
|
|
|
# Requires zlib support enabled in PHP.
|
|
|
|
|
$wgUseGzip = false;
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
# Which namespaces should support subpages?
|
|
|
|
|
# See Language.php for a list of namespaces.
|
|
|
|
|
#
|
|
|
|
|
$wgNamespacesWithSubpages = array( -1 => 0, 0 => 0, 1 => 1,
|
|
|
|
|
2 => 1, 3 => 1, 4 => 0, 5 => 1, 6 => 0, 7 => 1 );
|
|
|
|
|
|
2003-07-01 08:27:32 +00:00
|
|
|
$wgNamespacesToBeSearchedDefault = array( -1 => 0, 0 => 1, 1 => 0,
|
|
|
|
|
2 => 0, 3 => 0, 4 => 0, 5 => 0, 6 => 0, 7 => 0 );
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
?>
|