wiki.techinc.nl/includes/DefaultSettings.php

105 lines
3.7 KiB
PHP
Raw Normal View History

2003-04-14 23:10:40 +00:00
<?
# DO NOT EDIT THIS FILE!
# To customize your installation, edit "LocalSettings.php".
# 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
#
$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
$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";
$wgDTD = "http://www.w3.org/TR/html4/loose.dtd";
$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";
$wgShowIPinHeader = true; # For non-logged in users
$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;
$wgUseBetterLinksUpdate = true;
# 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
# 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
# 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 );
$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
?>