Fix #218: Redirects do not support named anchors
[mediawiki.git] / includes / DefaultSettings.php
blob22b4944035944a9eb87e48c98e6bc90969701b72
1 <?php
2 /**
4 * DO NOT EVER EDIT THIS FILE!
7 * To customize your installation, edit "LocalSettings.php". If you make
8 * changes here, they will be lost on next upgrade of MediaWiki!
10 * Note that since all these string interpolations are expanded
11 * before LocalSettings is included, if you localize something
12 * like $wgScriptPath, you must also localize everything that
13 * depends on it.
15 * Documentation is in the source and on:
16 * http://www.mediawiki.org/wiki/Help:Configuration_settings
18 * @package MediaWiki
21 # This is not a valid entry point, perform no further processing unless MEDIAWIKI is defined
22 if( !defined( 'MEDIAWIKI' ) ) {
23 echo "This file is part of MediaWiki and is not a valid entry point\n";
24 die( -1 );
27 /**
28 * Create a site configuration object
29 * Not used for much in a default install
31 require_once( 'includes/SiteConfiguration.php' );
32 $wgConf = new SiteConfiguration;
34 /** MediaWiki version number */
35 $wgVersion = '1.7alpha';
37 /** Name of the site. It must be changed in LocalSettings.php */
38 $wgSitename = 'MediaWiki';
40 /** Will be same as you set @see $wgSitename */
41 $wgMetaNamespace = FALSE;
44 /** URL of the server. It will be automatically built including https mode */
45 $wgServer = '';
47 if( isset( $_SERVER['SERVER_NAME'] ) ) {
48 $wgServerName = $_SERVER['SERVER_NAME'];
49 } elseif( isset( $_SERVER['HOSTNAME'] ) ) {
50 $wgServerName = $_SERVER['HOSTNAME'];
51 } elseif( isset( $_SERVER['HTTP_HOST'] ) ) {
52 $wgServerName = $_SERVER['HTTP_HOST'];
53 } elseif( isset( $_SERVER['SERVER_ADDR'] ) ) {
54 $wgServerName = $_SERVER['SERVER_ADDR'];
55 } else {
56 $wgServerName = 'localhost';
59 # check if server use https:
60 $wgProto = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 'https' : 'http';
62 $wgServer = $wgProto.'://' . $wgServerName;
63 # If the port is a non-standard one, add it to the URL
64 if( isset( $_SERVER['SERVER_PORT'] )
65 && ( ( $wgProto == 'http' && $_SERVER['SERVER_PORT'] != 80 )
66 || ( $wgProto == 'https' && $_SERVER['SERVER_PORT'] != 443 ) ) ) {
68 $wgServer .= ":" . $_SERVER['SERVER_PORT'];
72 /**
73 * The path we should point to.
74 * It might be a virtual path in case with use apache mod_rewrite for example
76 $wgScriptPath = '/wiki';
78 /**
79 * Whether to support URLs like index.php/Page_title
80 * @global bool $wgUsePathInfo
82 $wgUsePathInfo = ( strpos( php_sapi_name(), 'cgi' ) === false );
85 /**#@+
86 * Script users will request to get articles
87 * ATTN: Old installations used wiki.phtml and redirect.phtml -
88 * make sure that LocalSettings.php is correctly set!
89 * @deprecated
91 /**
92 * @global string $wgScript
94 $wgScript = "{$wgScriptPath}/index.php";
95 /**
96 * @global string $wgRedirectScript
98 $wgRedirectScript = "{$wgScriptPath}/redirect.php";
99 /**#@-*/
102 /**#@+
103 * @global string
106 * style path as seen by users
107 * @global string $wgStylePath
109 $wgStylePath = "{$wgScriptPath}/skins";
111 * filesystem stylesheets directory
112 * @global string $wgStyleDirectory
114 $wgStyleDirectory = "{$IP}/skins";
115 $wgStyleSheetPath = &$wgStylePath;
116 $wgArticlePath = "{$wgScript}?title=$1";
117 $wgUploadPath = "{$wgScriptPath}/upload";
118 $wgUploadDirectory = "{$IP}/upload";
119 $wgHashedUploadDirectory = true;
120 $wgLogo = "{$wgUploadPath}/wiki.png";
121 $wgFavicon = '/favicon.ico';
122 $wgMathPath = "{$wgUploadPath}/math";
123 $wgMathDirectory = "{$wgUploadDirectory}/math";
124 $wgTmpDirectory = "{$wgUploadDirectory}/tmp";
125 $wgUploadBaseUrl = "";
126 /**#@-*/
129 * Allowed title characters -- regex character class
130 * Don't change this unless you know what you're doing
132 * Problematic punctuation:
133 * []{}|# Are needed for link syntax, never enable these
134 * % Enabled by default, minor problems with path to query rewrite rules, see below
135 * + Doesn't work with path to query rewrite rules, corrupted by apache
136 * ? Enabled by default, but doesn't work with path to PATH_INFO rewrites
138 * All three of these punctuation problems can be avoided by using an alias, instead of a
139 * rewrite rule of either variety.
141 * The problem with % is that when using a path to query rewrite rule, URLs are
142 * double-unescaped: once by Apache's path conversion code, and again by PHP. So
143 * %253F, for example, becomes "?". Our code does not double-escape to compensate
144 * for this, indeed double escaping would break if the double-escaped title was
145 * passed in the query string rather than the path. This is a minor security issue
146 * because articles can be created such that they are hard to view or edit.
148 * Theoretically 0x80-0x9F of ISO 8859-1 should be disallowed, but
149 * this breaks interlanguage links
151 $wgLegalTitleChars = " %!\"$&'()*,\\-.\\/0-9:;=?@A-Z\\\\^_`a-z~\\x80-\\xFF";
155 * The external URL protocols
157 $wgUrlProtocols = array(
158 'http://',
159 'https://',
160 'ftp://',
161 'irc://',
162 'gopher://',
163 'telnet://', // Well if we're going to support the above.. -ævar
164 'nntp://', // @bug 3808 RFC 1738
165 'worldwind://',
166 'mailto:',
167 'news:'
170 /** internal name of virus scanner. This servers as a key to the $wgAntivirusSetup array.
171 * Set this to NULL to disable virus scanning. If not null, every file uploaded will be scanned for viruses.
172 * @global string $wgAntivirus
174 $wgAntivirus= NULL;
176 /** Configuration for different virus scanners. This an associative array of associative arrays:
177 * it contains on setup array per known scanner type. The entry is selected by $wgAntivirus, i.e.
178 * valid values for $wgAntivirus are the keys defined in this array.
180 * The configuration array for each scanner contains the following keys: "command", "codemap", "messagepattern";
182 * "command" is the full command to call the virus scanner - %f will be replaced with the name of the
183 * file to scan. If not present, the filename will be appended to the command. Note that this must be
184 * overwritten if the scanner is not in the system path; in that case, plase set
185 * $wgAntivirusSetup[$wgAntivirus]['command'] to the desired command with full path.
187 * "codemap" is a mapping of exit code to return codes of the detectVirus function in SpecialUpload.
188 * An exit code mapped to AV_SCAN_FAILED causes the function to consider the scan to be failed. This will pass
189 * the file if $wgAntivirusRequired is not set.
190 * An exit code mapped to AV_SCAN_ABORTED causes the function to consider the file to have an usupported format,
191 * which is probably imune to virusses. This causes the file to pass.
192 * An exit code mapped to AV_NO_VIRUS will cause the file to pass, meaning no virus was found.
193 * All other codes (like AV_VIRUS_FOUND) will cause the function to report a virus.
194 * You may use "*" as a key in the array to catch all exit codes not mapped otherwise.
196 * "messagepattern" is a perl regular expression to extract the meaningful part of the scanners
197 * output. The relevant part should be matched as group one (\1).
198 * If not defined or the pattern does not match, the full message is shown to the user.
200 * @global array $wgAntivirusSetup
202 $wgAntivirusSetup= array(
204 #setup for clamav
205 'clamav' => array (
206 'command' => "clamscan --no-summary ",
208 'codemap'=> array (
209 "0"=> AV_NO_VIRUS, #no virus
210 "1"=> AV_VIRUS_FOUND, #virus found
211 "52"=> AV_SCAN_ABORTED, #unsupported file format (probably imune)
212 "*"=> AV_SCAN_FAILED, #else scan failed
215 'messagepattern'=> '/.*?:(.*)/sim',
218 #setup for f-prot
219 'f-prot' => array (
220 'command' => "f-prot ",
222 'codemap'=> array (
223 "0"=> AV_NO_VIRUS, #no virus
224 "3"=> AV_VIRUS_FOUND, #virus found
225 "6"=> AV_VIRUS_FOUND, #virus found
226 "*"=> AV_SCAN_FAILED, #else scan failed
229 'messagepattern'=> '/.*?Infection:(.*)$/m',
234 /** Determines if a failed virus scan (AV_SCAN_FAILED) will cause the file to be rejected.
235 * @global boolean $wgAntivirusRequired
237 $wgAntivirusRequired= true;
239 /** Determines if the mime type of uploaded files should be checked
240 * @global boolean $wgVerifyMimeType
242 $wgVerifyMimeType= true;
244 /** Sets the mime type definition file to use by MimeMagic.php.
245 * @global string $wgMimeTypeFile
247 #$wgMimeTypeFile= "/etc/mime.types";
248 $wgMimeTypeFile= "includes/mime.types";
249 #$wgMimeTypeFile= NULL; #use built-in defaults only.
251 /** Sets the mime type info file to use by MimeMagic.php.
252 * @global string $wgMimeInfoFile
254 $wgMimeInfoFile= "includes/mime.info";
255 #$wgMimeInfoFile= NULL; #use built-in defaults only.
257 /** Switch for loading the FileInfo extension by PECL at runtime.
258 * This should be used only if fileinfo is installed as a shared object / dynamic libary
259 * @global string $wgLoadFileinfoExtension
261 $wgLoadFileinfoExtension= false;
263 /** Sets an external mime detector program. The command must print only the mime type to standard output.
264 * the name of the file to process will be appended to the command given here.
265 * If not set or NULL, mime_content_type will be used if available.
267 $wgMimeDetectorCommand= NULL; # use internal mime_content_type function, available since php 4.3.0
268 #$wgMimeDetectorCommand= "file -bi"; #use external mime detector (Linux)
270 /** Switch for trivial mime detection. Used by thumb.php to disable all fance things,
271 * because only a few types of images are needed and file extensions can be trusted.
273 $wgTrivialMimeDetection= false;
276 * To set 'pretty' URL paths for actions other than
277 * plain page views, add to this array. For instance:
278 * 'edit' => "$wgScriptPath/edit/$1"
280 * There must be an appropriate script or rewrite rule
281 * in place to handle these URLs.
283 $wgActionPaths = array();
286 * If you operate multiple wikis, you can define a shared upload path here.
287 * Uploads to this wiki will NOT be put there - they will be put into
288 * $wgUploadDirectory.
289 * If $wgUseSharedUploads is set, the wiki will look in the shared repository if
290 * no file of the given name is found in the local repository (for [[Image:..]],
291 * [[Media:..]] links). Thumbnails will also be looked for and generated in this
292 * directory.
294 $wgUseSharedUploads = false;
295 /** Full path on the web server where shared uploads can be found */
296 $wgSharedUploadPath = "http://commons.wikimedia.org/shared/images";
297 /** Fetch commons image description pages and display them on the local wiki? */
298 $wgFetchCommonsDescriptions = false;
299 /** Path on the file system where shared uploads can be found. */
300 $wgSharedUploadDirectory = "/var/www/wiki3/images";
301 /** DB name with metadata about shared directory. Set this to false if the uploads do not come from a wiki. */
302 $wgSharedUploadDBname = false;
303 /** Optional table prefix used in database. */
304 $wgSharedUploadDBprefix = '';
305 /** Cache shared metadata in memcached. Don't do this if the commons wiki is in a different memcached domain */
306 $wgCacheSharedUploads = true;
309 * Point the upload navigation link to an external URL
310 * Useful if you want to use a shared repository by default
311 * without disabling local uploads (use $wgEnableUploads = false for that)
312 * e.g. $wgUploadNavigationUrl = 'http://commons.wikimedia.org/wiki/Special:Upload';
314 $wgUploadNavigationUrl = false;
317 * Give a path here to use thumb.php for thumbnail generation on client request, instead of
318 * generating them on render and outputting a static URL. This is necessary if some of your
319 * apache servers don't have read/write access to the thumbnail path.
321 * Example:
322 * $wgThumbnailScriptPath = "{$wgScriptPath}/thumb.php";
324 $wgThumbnailScriptPath = false;
325 $wgSharedThumbnailScriptPath = false;
328 * Set the following to false especially if you have a set of files that need to
329 * be accessible by all wikis, and you do not want to use the hash (path/a/aa/)
330 * directory layout.
332 $wgHashedSharedUploadDirectory = true;
335 * Base URL for a repository wiki. Leave this blank if uploads are just stored
336 * in a shared directory and not meant to be accessible through a separate wiki.
337 * Otherwise the image description pages on the local wiki will link to the
338 * image description page on this wiki.
340 * Please specify the namespace, as in the example below.
342 $wgRepositoryBaseUrl="http://commons.wikimedia.org/wiki/Image:";
346 # Email settings
350 * Site admin email address
351 * Default to wikiadmin@SERVER_NAME
352 * @global string $wgEmergencyContact
354 $wgEmergencyContact = 'wikiadmin@' . $wgServerName;
357 * Password reminder email address
358 * The address we should use as sender when a user is requesting his password
359 * Default to apache@SERVER_NAME
360 * @global string $wgPasswordSender
362 $wgPasswordSender = 'MediaWiki Mail <apache@' . $wgServerName . '>';
365 * dummy address which should be accepted during mail send action
366 * It might be necessay to adapt the address or to set it equal
367 * to the $wgEmergencyContact address
369 #$wgNoReplyAddress = $wgEmergencyContact;
370 $wgNoReplyAddress = 'reply@not.possible';
373 * Set to true to enable the e-mail basic features:
374 * Password reminders, etc. If sending e-mail on your
375 * server doesn't work, you might want to disable this.
376 * @global bool $wgEnableEmail
378 $wgEnableEmail = true;
381 * Set to true to enable user-to-user e-mail.
382 * This can potentially be abused, as it's hard to track.
383 * @global bool $wgEnableUserEmail
385 $wgEnableUserEmail = true;
388 * SMTP Mode
389 * For using a direct (authenticated) SMTP server connection.
390 * Default to false or fill an array :
391 * <code>
392 * "host" => 'SMTP domain',
393 * "IDHost" => 'domain for MessageID',
394 * "port" => "25",
395 * "auth" => true/false,
396 * "username" => user,
397 * "password" => password
398 * </code>
400 * @global mixed $wgSMTP
402 $wgSMTP = false;
405 /**#@+
406 * Database settings
408 /** database host name or ip address */
409 $wgDBserver = 'localhost';
410 /** name of the database */
411 $wgDBname = 'wikidb';
412 /** */
413 $wgDBconnection = '';
414 /** Database username */
415 $wgDBuser = 'wikiuser';
416 /** Database type
417 * "mysql" for working code and "PostgreSQL" for development/broken code
419 $wgDBtype = "mysql";
420 /** Search type
421 * Leave as null to select the default search engine for the
422 * selected database type (eg SearchMySQL4), or set to a class
423 * name to override to a custom search engine.
425 $wgSearchType = null;
426 /** Table name prefix */
427 $wgDBprefix = '';
428 /** Database schema
429 * on some databases this allows separate
430 * logical namespace for application data
432 $wgDBschema = 'mediawiki';
433 /**#@-*/
435 /** Live high performance sites should disable this - some checks acquire giant mysql locks */
436 $wgCheckDBSchema = true;
440 * Shared database for multiple wikis. Presently used for storing a user table
441 * for single sign-on. The server for this database must be the same as for the
442 * main database.
443 * EXPERIMENTAL
445 $wgSharedDB = null;
447 # Database load balancer
448 # This is a two-dimensional array, an array of server info structures
449 # Fields are:
450 # host: Host name
451 # dbname: Default database name
452 # user: DB user
453 # password: DB password
454 # type: "mysql" or "pgsql"
455 # load: ratio of DB_SLAVE load, must be >=0, the sum of all loads must be >0
456 # groupLoads: array of load ratios, the key is the query group name. A query may belong
457 # to several groups, the most specific group defined here is used.
459 # flags: bit field
460 # DBO_DEFAULT -- turns on DBO_TRX only if !$wgCommandLineMode (recommended)
461 # DBO_DEBUG -- equivalent of $wgDebugDumpSql
462 # DBO_TRX -- wrap entire request in a transaction
463 # DBO_IGNORE -- ignore errors (not useful in LocalSettings.php)
464 # DBO_NOBUFFER -- turn off buffering (not useful in LocalSettings.php)
466 # max lag: (optional) Maximum replication lag before a slave will taken out of rotation
467 # max threads: (optional) Maximum number of running threads
469 # These and any other user-defined properties will be assigned to the mLBInfo member
470 # variable of the Database object.
472 # Leave at false to use the single-server variables above
473 $wgDBservers = false;
475 /** How long to wait for a slave to catch up to the master */
476 $wgMasterWaitTimeout = 10;
478 /** File to log MySQL errors to */
479 $wgDBerrorLog = false;
481 /** When to give an error message */
482 $wgDBClusterTimeout = 10;
485 * wgDBminWordLen :
486 * MySQL 3.x : used to discard words that MySQL will not return any results for
487 * shorter values configure mysql directly.
488 * MySQL 4.x : ignore it and configure mySQL
489 * See: http://dev.mysql.com/doc/mysql/en/Fulltext_Fine-tuning.html
491 $wgDBminWordLen = 4;
492 /** Set to true if using InnoDB tables */
493 $wgDBtransactions = false;
494 /** Set to true for compatibility with extensions that might be checking.
495 * MySQL 3.23.x is no longer supported. */
496 $wgDBmysql4 = true;
499 * Set to true to engage MySQL 4.1/5.0 charset-related features;
500 * for now will just cause sending of 'SET NAMES=utf8' on connect.
502 * WARNING: THIS IS EXPERIMENTAL!
504 * May break if you're not using the table defs from mysql5/tables.sql.
505 * May break if you're upgrading an existing wiki if set differently.
506 * Broken symptoms likely to include incorrect behavior with page titles,
507 * usernames, comments etc containing non-ASCII characters.
508 * Might also cause failures on the object cache and other things.
510 * Even correct usage may cause failures with Unicode supplementary
511 * characters (those not in the Basic Multilingual Plane) unless MySQL
512 * has enhanced their Unicode support.
514 $wgDBmysql5 = false;
517 * Other wikis on this site, can be administered from a single developer
518 * account.
519 * Array numeric key => database name
521 $wgLocalDatabases = array();
524 * Object cache settings
525 * See Defines.php for types
527 $wgMainCacheType = CACHE_NONE;
528 $wgMessageCacheType = CACHE_ANYTHING;
529 $wgParserCacheType = CACHE_ANYTHING;
531 $wgParserCacheExpireTime = 86400;
533 $wgSessionsInMemcached = false;
534 $wgLinkCacheMemcached = false; # Not fully tested
537 * Memcached-specific settings
538 * See docs/memcached.txt
540 $wgUseMemCached = false;
541 $wgMemCachedDebug = false; # Will be set to false in Setup.php, if the server isn't working
542 $wgMemCachedServers = array( '127.0.0.1:11000' );
543 $wgMemCachedDebug = false;
544 $wgMemCachedPersistent = false;
547 * Directory for local copy of message cache, for use in addition to memcached
549 $wgLocalMessageCache = false;
552 * Directory for compiled constant message array databases
553 * WARNING: turning anything on will just break things, aaaaaah!!!!
555 $wgCachedMessageArrays = false;
557 # Language settings
559 /** Site language code, should be one of ./languages/Language(.*).php */
560 $wgLanguageCode = 'en';
562 /** Treat language links as magic connectors, not inline links */
563 $wgInterwikiMagic = true;
565 /** Hide interlanguage links from the sidebar */
566 $wgHideInterlanguageLinks = false;
569 /** We speak UTF-8 all the time now, unless some oddities happen */
570 $wgInputEncoding = 'UTF-8';
571 $wgOutputEncoding = 'UTF-8';
572 $wgEditEncoding = '';
574 # Set this to eg 'ISO-8859-1' to perform character set
575 # conversion when loading old revisions not marked with
576 # "utf-8" flag. Use this when converting wiki to UTF-8
577 # without the burdensome mass conversion of old text data.
579 # NOTE! This DOES NOT touch any fields other than old_text.
580 # Titles, comments, user names, etc still must be converted
581 # en masse in the database before continuing as a UTF-8 wiki.
582 $wgLegacyEncoding = false;
585 * If set to true, the MediaWiki 1.4 to 1.5 schema conversion will
586 * create stub reference rows in the text table instead of copying
587 * the full text of all current entries from 'cur' to 'text'.
589 * This will speed up the conversion step for large sites, but
590 * requires that the cur table be kept around for those revisions
591 * to remain viewable.
593 * maintenance/migrateCurStubs.php can be used to complete the
594 * migration in the background once the wiki is back online.
596 * This option affects the updaters *only*. Any present cur stub
597 * revisions will be readable at runtime regardless of this setting.
599 $wgLegacySchemaConversion = false;
601 $wgMimeType = 'text/html';
602 $wgJsMimeType = 'text/javascript';
603 $wgDocType = '-//W3C//DTD XHTML 1.0 Transitional//EN';
604 $wgDTD = 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd';
606 /** Enable to allow rewriting dates in page text.
607 * DOES NOT FORMAT CORRECTLY FOR MOST LANGUAGES */
608 $wgUseDynamicDates = false;
609 /** Enable dates like 'May 12' instead of '12 May', this only takes effect if
610 * the interface is set to English
612 $wgAmericanDates = false;
614 * For Hindi and Arabic use local numerals instead of Western style (0-9)
615 * numerals in interface.
617 $wgTranslateNumerals = true;
620 # Translation using MediaWiki: namespace
621 # This will increase load times by 25-60% unless memcached is installed
622 # Interface messages will be loaded from the database.
623 $wgUseDatabaseMessages = true;
624 $wgMsgCacheExpiry = 86400;
626 # Whether to enable language variant conversion.
627 $wgDisableLangConversion = false;
629 # Whether to use zhdaemon to perform Chinese text processing
630 # zhdaemon is under developement, so normally you don't want to
631 # use it unless for testing
632 $wgUseZhdaemon = false;
633 $wgZhdaemonHost="localhost";
634 $wgZhdaemonPort=2004;
636 /** Normally you can ignore this and it will be something
637 like $wgMetaNamespace . "_talk". In some languages, you
638 may want to set this manually for grammatical reasons.
639 It is currently only respected by those languages
640 where it might be relevant and where no automatic
641 grammar converter exists.
643 $wgMetaNamespaceTalk = false;
645 # Miscellaneous configuration settings
648 $wgLocalInterwiki = 'w';
649 $wgInterwikiExpiry = 10800; # Expiry time for cache of interwiki table
651 /** Interwiki caching settings.
652 $wgInterwikiCache specifies path to constant database file
653 This cdb database is generated by dumpInterwiki from maintenance
654 and has such key formats:
655 dbname:key - a simple key (e.g. enwiki:meta)
656 _sitename:key - site-scope key (e.g. wiktionary:meta)
657 __global:key - global-scope key (e.g. __global:meta)
658 __sites:dbname - site mapping (e.g. __sites:enwiki)
659 Sites mapping just specifies site name, other keys provide
660 "local url" data layout.
661 $wgInterwikiScopes specify number of domains to check for messages:
662 1 - Just wiki(db)-level
663 2 - wiki and global levels
664 3 - site levels
665 $wgInterwikiFallbackSite - if unable to resolve from cache
667 $wgInterwikiCache = false;
668 $wgInterwikiScopes = 3;
669 $wgInterwikiFallbackSite = 'wiki';
672 * If local interwikis are set up which allow redirects,
673 * set this regexp to restrict URLs which will be displayed
674 * as 'redirected from' links.
676 * It might look something like this:
677 * $wgRedirectSources = '!^https?://[a-z-]+\.wikipedia\.org/!';
679 * Leave at false to avoid displaying any incoming redirect markers.
680 * This does not affect intra-wiki redirects, which don't change
681 * the URL.
683 $wgRedirectSources = false;
686 $wgShowIPinHeader = true; # For non-logged in users
687 $wgMaxNameChars = 255; # Maximum number of bytes in username
688 $wgMaxArticleSize = 2048; # Maximum article size in kilobytes
690 $wgExtraSubtitle = '';
691 $wgSiteSupportPage = ''; # A page where you users can receive donations
693 $wgReadOnlyFile = "{$wgUploadDirectory}/lock_yBgMBwiR";
696 * The debug log file should be not be publicly accessible if it is used, as it
697 * may contain private data. */
698 $wgDebugLogFile = '';
700 /**#@+
701 * @global bool
703 $wgDebugRedirects = false;
704 $wgDebugRawPage = false; # Avoid overlapping debug entries by leaving out CSS
706 $wgDebugComments = false;
707 $wgReadOnly = null;
708 $wgLogQueries = false;
711 * Write SQL queries to the debug log
713 $wgDebugDumpSql = false;
716 * Set to an array of log group keys to filenames.
717 * If set, wfDebugLog() output for that group will go to that file instead
718 * of the regular $wgDebugLogFile. Useful for enabling selective logging
719 * in production.
721 $wgDebugLogGroups = array();
724 * Whether to show "we're sorry, but there has been a database error" pages.
725 * Displaying errors aids in debugging, but may display information useful
726 * to an attacker.
728 $wgShowSQLErrors = false;
731 * If true, some error messages will be colorized when running scripts on the
732 * command line; this can aid picking important things out when debugging.
733 * Ignored when running on Windows or when output is redirected to a file.
735 $wgColorErrors = true;
738 * disable experimental dmoz-like category browsing. Output things like:
739 * Encyclopedia > Music > Style of Music > Jazz
741 $wgUseCategoryBrowser = false;
744 * Keep parsed pages in a cache (objectcache table, turck, or memcached)
745 * to speed up output of the same page viewed by another user with the
746 * same options.
748 * This can provide a significant speedup for medium to large pages,
749 * so you probably want to keep it on.
751 $wgEnableParserCache = true;
754 * If on, the sidebar navigation links are cached for users with the
755 * current language set. This can save a touch of load on a busy site
756 * by shaving off extra message lookups.
758 * However it is also fragile: changing the site configuration, or
759 * having a variable $wgArticlePath, can produce broken links that
760 * don't update as expected.
762 $wgEnableSidebarCache = false;
765 * Under which condition should a page in the main namespace be counted
766 * as a valid article? If $wgUseCommaCount is set to true, it will be
767 * counted if it contains at least one comma. If it is set to false
768 * (default), it will only be counted if it contains at least one [[wiki
769 * link]]. See http://meta.wikimedia.org/wiki/Help:Article_count
771 * Retroactively changing this variable will not affect
772 * the existing count (cf. maintenance/recount.sql).
774 $wgUseCommaCount = false;
776 /**#@-*/
779 * wgHitcounterUpdateFreq sets how often page counters should be updated, higher
780 * values are easier on the database. A value of 1 causes the counters to be
781 * updated on every hit, any higher value n cause them to update *on average*
782 * every n hits. Should be set to either 1 or something largish, eg 1000, for
783 * maximum efficiency.
785 $wgHitcounterUpdateFreq = 1;
787 # Basic user rights and block settings
788 $wgSysopUserBans = true; # Allow sysops to ban logged-in users
789 $wgSysopRangeBans = true; # Allow sysops to ban IP ranges
790 $wgAutoblockExpiry = 86400; # Number of seconds before autoblock entries expire
791 $wgBlockAllowsUTEdit = false; # Blocks allow users to edit their own user talk page
793 # Pages anonymous user may see as an array, e.g.:
794 # array ( "Main Page", "Special:Userlogin", "Wikipedia:Help");
795 # NOTE: This will only work if $wgGroupPermissions['*']['read']
796 # is false -- see below. Otherwise, ALL pages are accessible,
797 # regardless of this setting.
798 # Also note that this will only protect _pages in the wiki_.
799 # Uploaded files will remain readable. Make your upload
800 # directory name unguessable, or use .htaccess to protect it.
801 $wgWhitelistRead = false;
803 /**
804 * Should editors be required to have a validated e-mail
805 * address before being allowed to edit?
807 $wgEmailConfirmToEdit=false;
810 * Permission keys given to users in each group.
811 * All users are implicitly in the '*' group including anonymous visitors;
812 * logged-in users are all implicitly in the 'user' group. These will be
813 * combined with the permissions of all groups that a given user is listed
814 * in in the user_groups table.
816 * Functionality to make pages inaccessible has not been extensively tested
817 * for security. Use at your own risk!
819 * This replaces wgWhitelistAccount and wgWhitelistEdit
821 $wgGroupPermissions = array();
823 // Implicit group for all visitors
824 $wgGroupPermissions['*' ]['createaccount'] = true;
825 $wgGroupPermissions['*' ]['read'] = true;
826 $wgGroupPermissions['*' ]['edit'] = true;
827 $wgGroupPermissions['*' ]['createpage'] = true;
828 $wgGroupPermissions['*' ]['createtalk'] = true;
830 // Implicit group for all logged-in accounts
831 $wgGroupPermissions['user' ]['move'] = true;
832 $wgGroupPermissions['user' ]['read'] = true;
833 $wgGroupPermissions['user' ]['edit'] = true;
834 $wgGroupPermissions['user' ]['createpage'] = true;
835 $wgGroupPermissions['user' ]['createtalk'] = true;
836 $wgGroupPermissions['user' ]['upload'] = true;
837 $wgGroupPermissions['user' ]['reupload'] = true;
838 $wgGroupPermissions['user' ]['reupload-shared'] = true;
839 $wgGroupPermissions['user' ]['minoredit'] = true;
841 // Implicit group for accounts that pass $wgAutoConfirmAge
842 $wgGroupPermissions['autoconfirmed']['autoconfirmed'] = true;
844 // Users with bot privilege can have their edits hidden
845 // from various log pages by default
846 $wgGroupPermissions['bot' ]['bot'] = true;
847 $wgGroupPermissions['bot' ]['autoconfirmed'] = true;
849 // Most extra permission abilities go to this group
850 $wgGroupPermissions['sysop']['block'] = true;
851 $wgGroupPermissions['sysop']['createaccount'] = true;
852 $wgGroupPermissions['sysop']['delete'] = true;
853 $wgGroupPermissions['sysop']['deletedhistory'] = true; // can view deleted history entries, but not see or restore the text
854 $wgGroupPermissions['sysop']['editinterface'] = true;
855 $wgGroupPermissions['sysop']['import'] = true;
856 $wgGroupPermissions['sysop']['importupload'] = true;
857 $wgGroupPermissions['sysop']['move'] = true;
858 $wgGroupPermissions['sysop']['patrol'] = true;
859 $wgGroupPermissions['sysop']['protect'] = true;
860 $wgGroupPermissions['sysop']['rollback'] = true;
861 $wgGroupPermissions['sysop']['upload'] = true;
862 $wgGroupPermissions['sysop']['reupload'] = true;
863 $wgGroupPermissions['sysop']['reupload-shared'] = true;
864 $wgGroupPermissions['sysop']['unwatchedpages'] = true;
865 $wgGroupPermissions['sysop']['autoconfirmed'] = true;
867 // Permission to change users' group assignments
868 $wgGroupPermissions['bureaucrat']['userrights'] = true;
870 // Experimental permissions, not ready for production use
871 //$wgGroupPermissions['sysop']['deleterevision'] = true;
872 //$wgGroupPermissions['bureaucrat']['hiderevision'] = true;
875 * The developer group is deprecated, but can be activated if need be
876 * to use the 'lockdb' and 'unlockdb' special pages. Those require
877 * that a lock file be defined and creatable/removable by the web
878 * server.
880 # $wgGroupPermissions['developer']['siteadmin'] = true;
883 * Set of available actions that can be restricted via Special:Protect
884 * You probably shouldn't change this.
885 * Translated trough restriction-* messages.
887 $wgRestrictionTypes = array( 'edit', 'move' );
890 * Set of permission keys that can be selected via Special:Protect.
891 * 'autoconfirm' allows all registerd users if $wgAutoConfirmAge is 0.
893 $wgRestrictionLevels = array( '', 'autoconfirmed', 'sysop' );
897 * Number of seconds an account is required to age before
898 * it's given the implicit 'autoconfirm' group membership.
899 * This can be used to limit privileges of new accounts.
901 * Accounts created by earlier versions of the software
902 * may not have a recorded creation date, and will always
903 * be considered to pass the age test.
905 * When left at 0, all registered accounts will pass.
907 $wgAutoConfirmAge = 0;
908 //$wgAutoConfirmAge = 600; // ten minutes
909 //$wgAutoConfirmAge = 3600*24; // one day
913 # Proxy scanner settings
917 * If you enable this, every editor's IP address will be scanned for open HTTP
918 * proxies.
920 * Don't enable this. Many sysops will report "hostile TCP port scans" to your
921 * ISP and ask for your server to be shut down.
923 * You have been warned.
925 $wgBlockOpenProxies = false;
926 /** Port we want to scan for a proxy */
927 $wgProxyPorts = array( 80, 81, 1080, 3128, 6588, 8000, 8080, 8888, 65506 );
928 /** Script used to scan */
929 $wgProxyScriptPath = "$IP/proxy_check.php";
930 /** */
931 $wgProxyMemcExpiry = 86400;
932 /** This should always be customised in LocalSettings.php */
933 $wgSecretKey = false;
934 /** big list of banned IP addresses, in the keys not the values */
935 $wgProxyList = array();
936 /** deprecated */
937 $wgProxyKey = false;
939 /** Number of accounts each IP address may create, 0 to disable.
940 * Requires memcached */
941 $wgAccountCreationThrottle = 0;
943 # Client-side caching:
945 /** Allow client-side caching of pages */
946 $wgCachePages = true;
949 * Set this to current time to invalidate all prior cached pages. Affects both
950 * client- and server-side caching.
951 * You can get the current date on your server by using the command:
952 * date +%Y%m%d%H%M%S
954 $wgCacheEpoch = '20030516000000';
957 # Server-side caching:
960 * This will cache static pages for non-logged-in users to reduce
961 * database traffic on public sites.
962 * Must set $wgShowIPinHeader = false
964 $wgUseFileCache = false;
965 /** Directory where the cached page will be saved */
966 $wgFileCacheDirectory = "{$wgUploadDirectory}/cache";
969 * When using the file cache, we can store the cached HTML gzipped to save disk
970 * space. Pages will then also be served compressed to clients that support it.
971 * THIS IS NOT COMPATIBLE with ob_gzhandler which is now enabled if supported in
972 * the default LocalSettings.php! If you enable this, remove that setting first.
974 * Requires zlib support enabled in PHP.
976 $wgUseGzip = false;
978 # Email notification settings
981 /** For email notification on page changes */
982 $wgPasswordSender = $wgEmergencyContact;
984 # true: from page editor if s/he opted-in
985 # false: Enotif mails appear to come from $wgEmergencyContact
986 $wgEnotifFromEditor = false;
988 // TODO move UPO to preferences probably ?
989 # If set to true, users get a corresponding option in their preferences and can choose to enable or disable at their discretion
990 # If set to false, the corresponding input form on the user preference page is suppressed
991 # It call this to be a "user-preferences-option (UPO)"
992 $wgEmailAuthentication = true; # UPO (if this is set to false, texts referring to authentication are suppressed)
993 $wgEnotifWatchlist = false; # UPO
994 $wgEnotifUserTalk = false; # UPO
995 $wgEnotifRevealEditorAddress = false; # UPO; reply-to address may be filled with page editor's address (if user allowed this in the preferences)
996 $wgEnotifMinorEdits = true; # UPO; false: "minor edits" on pages do not trigger notification mails.
997 # # Attention: _every_ change on a user_talk page trigger a notification mail (if the user is not yet notified)
1000 /** Show watching users in recent changes, watchlist and page history views */
1001 $wgRCShowWatchingUsers = false; # UPO
1002 /** Show watching users in Page views */
1003 $wgPageShowWatchingUsers = false;
1005 * Show "Updated (since my last visit)" marker in RC view, watchlist and history
1006 * view for watched pages with new changes */
1007 $wgShowUpdatedMarker = true;
1009 $wgCookieExpiration = 2592000;
1011 /** Clock skew or the one-second resolution of time() can occasionally cause cache
1012 * problems when the user requests two pages within a short period of time. This
1013 * variable adds a given number of seconds to vulnerable timestamps, thereby giving
1014 * a grace period.
1016 $wgClockSkewFudge = 5;
1018 # Squid-related settings
1021 /** Enable/disable Squid */
1022 $wgUseSquid = false;
1024 /** If you run Squid3 with ESI support, enable this (default:false): */
1025 $wgUseESI = false;
1027 /** Internal server name as known to Squid, if different */
1028 # $wgInternalServer = 'http://yourinternal.tld:8000';
1029 $wgInternalServer = $wgServer;
1032 * Cache timeout for the squid, will be sent as s-maxage (without ESI) or
1033 * Surrogate-Control (with ESI). Without ESI, you should strip out s-maxage in
1034 * the Squid config. 18000 seconds = 5 hours, more cache hits with 2678400 = 31
1035 * days
1037 $wgSquidMaxage = 18000;
1040 * A list of proxy servers (ips if possible) to purge on changes don't specify
1041 * ports here (80 is default)
1043 # $wgSquidServers = array('127.0.0.1');
1044 $wgSquidServers = array();
1045 $wgSquidServersNoPurge = array();
1047 /** Maximum number of titles to purge in any one client operation */
1048 $wgMaxSquidPurgeTitles = 400;
1050 /** HTCP multicast purging */
1051 $wgHTCPPort = 4827;
1052 $wgHTCPMulticastTTL = 1;
1053 # $wgHTCPMulticastAddress = "224.0.0.85";
1055 # Cookie settings:
1058 * Set to set an explicit domain on the login cookies eg, "justthis.domain. org"
1059 * or ".any.subdomain.net"
1061 $wgCookieDomain = '';
1062 $wgCookiePath = '/';
1063 $wgCookieSecure = ($wgProto == 'https');
1064 $wgDisableCookieCheck = false;
1066 /** Whether to allow inline image pointing to other websites */
1067 $wgAllowExternalImages = true;
1069 /** If the above is false, you can specify an exception here. Image URLs
1070 * that start with this string are then rendered, while all others are not.
1071 * You can use this to set up a trusted, simple repository of images.
1073 * Example:
1074 * $wgAllowExternalImagesFrom = 'http://127.0.0.1/';
1076 $wgAllowExternalImagesFrom = '';
1078 /** Disable database-intensive features */
1079 $wgMiserMode = false;
1080 /** Disable all query pages if miser mode is on, not just some */
1081 $wgDisableQueryPages = false;
1082 /** Generate a watchlist once every hour or so */
1083 $wgUseWatchlistCache = false;
1084 /** The hour or so mentioned above */
1085 $wgWLCacheTimeout = 3600;
1086 /** Number of links to a page required before it is deemed "wanted" */
1087 $wgWantedPagesThreshold = 1;
1090 * To use inline TeX, you need to compile 'texvc' (in the 'math' subdirectory of
1091 * the MediaWiki package and have latex, dvips, gs (ghostscript), andconvert
1092 * (ImageMagick) installed and available in the PATH.
1093 * Please see math/README for more information.
1095 $wgUseTeX = false;
1096 /** Location of the texvc binary */
1097 $wgTexvc = './math/texvc';
1100 # Profiling / debugging
1102 # You have to create a 'profiling' table in your database before using
1103 # profiling see maintenance/archives/patch-profiling.sql .
1105 /** Enable for more detailed by-function times in debug log */
1106 $wgProfiling = false;
1107 /** Only record profiling info for pages that took longer than this */
1108 $wgProfileLimit = 0.0;
1109 /** Don't put non-profiling info into log file */
1110 $wgProfileOnly = false;
1111 /** Log sums from profiling into "profiling" table in db. */
1112 $wgProfileToDatabase = false;
1113 /** Only profile every n requests when profiling is turned on */
1114 $wgProfileSampleRate = 1;
1115 /** If true, print a raw call tree instead of per-function report */
1116 $wgProfileCallTree = false;
1117 /** If not empty, specifies profiler type to load */
1118 $wgProfilerType = '';
1120 /** Settings for UDP profiler */
1121 $wgUDPProfilerHost = '127.0.0.1';
1122 $wgUDPProfilerPort = '3811';
1124 /** Detects non-matching wfProfileIn/wfProfileOut calls */
1125 $wgDebugProfiling = false;
1126 /** Output debug message on every wfProfileIn/wfProfileOut */
1127 $wgDebugFunctionEntry = 0;
1128 /** Lots of debugging output from SquidUpdate.php */
1129 $wgDebugSquid = false;
1131 $wgDisableCounters = false;
1132 $wgDisableTextSearch = false;
1133 $wgDisableSearchContext = false;
1135 * If you've disabled search semi-permanently, this also disables updates to the
1136 * table. If you ever re-enable, be sure to rebuild the search table.
1138 $wgDisableSearchUpdate = false;
1139 /** Uploads have to be specially set up to be secure */
1140 $wgEnableUploads = false;
1142 * Show EXIF data, on by default if available.
1143 * Requires PHP's EXIF extension: http://www.php.net/manual/en/ref.exif.php
1145 $wgShowEXIF = function_exists( 'exif_read_data' );
1148 * Set to true to enable the upload _link_ while local uploads are disabled.
1149 * Assumes that the special page link will be bounced to another server where
1150 * uploads do work.
1152 $wgRemoteUploads = false;
1153 $wgDisableAnonTalk = false;
1155 * Do DELETE/INSERT for link updates instead of incremental
1157 $wgUseDumbLinkUpdate = false;
1160 * Anti-lock flags - bitfield
1161 * ALF_PRELOAD_LINKS
1162 * Preload links during link update for save
1163 * ALF_PRELOAD_EXISTENCE
1164 * Preload cur_id during replaceLinkHolders
1165 * ALF_NO_LINK_LOCK
1166 * Don't use locking reads when updating the link table. This is
1167 * necessary for wikis with a high edit rate for performance
1168 * reasons, but may cause link table inconsistency
1169 * ALF_NO_BLOCK_LOCK
1170 * As for ALF_LINK_LOCK, this flag is a necessity for high-traffic
1171 * wikis.
1173 $wgAntiLockFlags = 0;
1176 * Path to the GNU diff3 utility. If the file doesn't exist, edit conflicts will
1177 * fall back to the old behaviour (no merging).
1179 $wgDiff3 = '/usr/bin/diff3';
1182 * We can also compress text in the old revisions table. If this is set on, old
1183 * revisions will be compressed on page save if zlib support is available. Any
1184 * compressed revisions will be decompressed on load regardless of this setting
1185 * *but will not be readable at all* if zlib support is not available.
1187 $wgCompressRevisions = false;
1190 * This is the list of preferred extensions for uploading files. Uploading files
1191 * with extensions not in this list will trigger a warning.
1193 $wgFileExtensions = array( 'png', 'gif', 'jpg', 'jpeg' );
1195 /** Files with these extensions will never be allowed as uploads. */
1196 $wgFileBlacklist = array(
1197 # HTML may contain cookie-stealing JavaScript and web bugs
1198 'html', 'htm', 'js', 'jsb',
1199 # PHP scripts may execute arbitrary code on the server
1200 'php', 'phtml', 'php3', 'php4', 'phps',
1201 # Other types that may be interpreted by some servers
1202 'shtml', 'jhtml', 'pl', 'py', 'cgi',
1203 # May contain harmful executables for Windows victims
1204 'exe', 'scr', 'dll', 'msi', 'vbs', 'bat', 'com', 'pif', 'cmd', 'vxd', 'cpl' );
1206 /** Files with these mime types will never be allowed as uploads
1207 * if $wgVerifyMimeType is enabled.
1209 $wgMimeTypeBlacklist= array(
1210 # HTML may contain cookie-stealing JavaScript and web bugs
1211 'text/html', 'text/javascript', 'text/x-javascript', 'application/x-shellscript',
1212 # PHP scripts may execute arbitrary code on the server
1213 'application/x-php', 'text/x-php',
1214 # Other types that may be interpreted by some servers
1215 'text/x-python', 'text/x-perl', 'text/x-bash', 'text/x-sh', 'text/x-csh',
1216 # Windows metafile, client-side vulnerability on some systems
1217 'application/x-msmetafile'
1220 /** This is a flag to determine whether or not to check file extensions on upload. */
1221 $wgCheckFileExtensions = true;
1224 * If this is turned off, users may override the warning for files not covered
1225 * by $wgFileExtensions.
1227 $wgStrictFileExtensions = true;
1229 /** Warn if uploaded files are larger than this */
1230 $wgUploadSizeWarning = 150 * 1024;
1232 /** For compatibility with old installations set to false */
1233 $wgPasswordSalt = true;
1235 /** Which namespaces should support subpages?
1236 * See Language.php for a list of namespaces.
1238 $wgNamespacesWithSubpages = array(
1239 NS_TALK => true,
1240 NS_USER => true,
1241 NS_USER_TALK => true,
1242 NS_PROJECT_TALK => true,
1243 NS_IMAGE_TALK => true,
1244 NS_MEDIAWIKI_TALK => true,
1245 NS_TEMPLATE_TALK => true,
1246 NS_HELP_TALK => true,
1247 NS_CATEGORY_TALK => true
1250 $wgNamespacesToBeSearchedDefault = array(
1251 NS_MAIN => true,
1254 /** If set, a bold ugly notice will show up at the top of every page. */
1255 $wgSiteNotice = '';
1259 # Images settings
1262 /** dynamic server side image resizing ("Thumbnails") */
1263 $wgUseImageResize = false;
1266 * Resizing can be done using PHP's internal image libraries or using
1267 * ImageMagick or another third-party converter, e.g. GraphicMagick.
1268 * These support more file formats than PHP, which only supports PNG,
1269 * GIF, JPG, XBM and WBMP.
1271 * Use Image Magick instead of PHP builtin functions.
1273 $wgUseImageMagick = false;
1274 /** The convert command shipped with ImageMagick */
1275 $wgImageMagickConvertCommand = '/usr/bin/convert';
1278 * Use another resizing converter, e.g. GraphicMagick
1279 * %s will be replaced with the source path, %d with the destination
1280 * %w and %h will be replaced with the width and height
1282 * An example is provided for GraphicMagick
1283 * Leave as false to skip this
1285 #$wgCustomConvertCommand = "gm convert %s -resize %wx%h %d"
1286 $wgCustomConvertCommand = false;
1288 # Scalable Vector Graphics (SVG) may be uploaded as images.
1289 # Since SVG support is not yet standard in browsers, it is
1290 # necessary to rasterize SVGs to PNG as a fallback format.
1292 # An external program is required to perform this conversion:
1293 $wgSVGConverters = array(
1294 'ImageMagick' => '$path/convert -background white -geometry $width $input $output',
1295 'sodipodi' => '$path/sodipodi -z -w $width -f $input -e $output',
1296 'inkscape' => '$path/inkscape -z -w $width -f $input -e $output',
1297 'batik' => 'java -Djava.awt.headless=true -jar $path/batik-rasterizer.jar -w $width -d $output $input',
1298 'rsvg' => '$path/rsvg -w$width -h$height $input $output',
1300 /** Pick one of the above */
1301 $wgSVGConverter = 'ImageMagick';
1302 /** If not in the executable PATH, specify */
1303 $wgSVGConverterPath = '';
1304 /** Don't scale a SVG larger than this */
1305 $wgSVGMaxSize = 1024;
1307 * Don't thumbnail an image if it will use too much working memory
1308 * Default is 50 MB if decompressed to RGBA form, which corresponds to
1309 * 12.5 million pixels or 3500x3500
1311 $wgMaxImageArea = 1.25e7;
1313 * If rendered thumbnail files are older than this timestamp, they
1314 * will be rerendered on demand as if the file didn't already exist.
1315 * Update if there is some need to force thumbs and SVG rasterizations
1316 * to rerender, such as fixes to rendering bugs.
1318 $wgThumbnailEpoch = '20030516000000';
1322 /** Set $wgCommandLineMode if it's not set already, to avoid notices */
1323 if( !isset( $wgCommandLineMode ) ) {
1324 $wgCommandLineMode = false;
1329 # Recent changes settings
1332 /** Log IP addresses in the recentchanges table */
1333 $wgPutIPinRC = true;
1336 * Recentchanges items are periodically purged; entries older than this many
1337 * seconds will go.
1338 * For one week : 7 * 24 * 3600
1340 $wgRCMaxAge = 7 * 24 * 3600;
1343 # Send RC updates via UDP
1344 $wgRC2UDPAddress = false;
1345 $wgRC2UDPPort = false;
1346 $wgRC2UDPPrefix = '';
1349 # Copyright and credits settings
1352 /** RDF metadata toggles */
1353 $wgEnableDublinCoreRdf = false;
1354 $wgEnableCreativeCommonsRdf = false;
1356 /** Override for copyright metadata.
1357 * TODO: these options need documentation
1359 $wgRightsPage = NULL;
1360 $wgRightsUrl = NULL;
1361 $wgRightsText = NULL;
1362 $wgRightsIcon = NULL;
1364 /** Set this to some HTML to override the rights icon with an arbitrary logo */
1365 $wgCopyrightIcon = NULL;
1367 /** Set this to true if you want detailed copyright information forms on Upload. */
1368 $wgUseCopyrightUpload = false;
1370 /** Set this to false if you want to disable checking that detailed copyright
1371 * information values are not empty. */
1372 $wgCheckCopyrightUpload = true;
1375 * Set this to the number of authors that you want to be credited below an
1376 * article text. Set it to zero to hide the attribution block, and a negative
1377 * number (like -1) to show all authors. Note that this will require 2-3 extra
1378 * database hits, which can have a not insignificant impact on performance for
1379 * large wikis.
1381 $wgMaxCredits = 0;
1383 /** If there are more than $wgMaxCredits authors, show $wgMaxCredits of them.
1384 * Otherwise, link to a separate credits page. */
1385 $wgShowCreditsIfMax = true;
1390 * Set this to false to avoid forcing the first letter of links to capitals.
1391 * WARNING: may break links! This makes links COMPLETELY case-sensitive. Links
1392 * appearing with a capital at the beginning of a sentence will *not* go to the
1393 * same place as links in the middle of a sentence using a lowercase initial.
1395 $wgCapitalLinks = true;
1398 * List of interwiki prefixes for wikis we'll accept as sources for
1399 * Special:Import (for sysops). Since complete page history can be imported,
1400 * these should be 'trusted'.
1402 * If a user has the 'import' permission but not the 'importupload' permission,
1403 * they will only be able to run imports through this transwiki interface.
1405 $wgImportSources = array();
1408 * If set to false, disables the full-history option on Special:Export.
1409 * This is currently poorly optimized for long edit histories, so is
1410 * disabled on Wikimedia's sites.
1412 $wgExportAllowHistory = true;
1413 $wgExportAllowListContributors = false ;
1416 /** Text matching this regular expression will be recognised as spam
1417 * See http://en.wikipedia.org/wiki/Regular_expression */
1418 $wgSpamRegex = false;
1419 /** Similarly if this function returns true */
1420 $wgFilterCallback = false;
1422 /** Go button goes straight to the edit screen if the article doesn't exist. */
1423 $wgGoToEdit = false;
1425 /** Allow limited user-specified HTML in wiki pages?
1426 * It will be run through a whitelist for security. Set this to false if you
1427 * want wiki pages to consist only of wiki markup. Note that replacements do not
1428 * yet exist for all HTML constructs.*/
1429 $wgUserHtml = true;
1431 /** Allow raw, unchecked HTML in <html>...</html> sections.
1432 * THIS IS VERY DANGEROUS on a publically editable site, so USE wgGroupPermissions
1433 * TO RESTRICT EDITING to only those that you trust
1435 $wgRawHtml = false;
1438 * $wgUseTidy: use tidy to make sure HTML output is sane.
1439 * This should only be enabled if $wgUserHtml is true.
1440 * tidy is a free tool that fixes broken HTML.
1441 * See http://www.w3.org/People/Raggett/tidy/
1442 * $wgTidyBin should be set to the path of the binary and
1443 * $wgTidyConf to the path of the configuration file.
1444 * $wgTidyOpts can include any number of parameters.
1446 * $wgTidyInternal controls the use of the PECL extension to use an in-
1447 * process tidy library instead of spawning a separate program.
1448 * Normally you shouldn't need to override the setting except for
1449 * debugging. To install, use 'pear install tidy' and add a line
1450 * 'extension=tidy.so' to php.ini.
1452 $wgUseTidy = false;
1453 $wgAlwaysUseTidy = false;
1454 $wgTidyBin = 'tidy';
1455 $wgTidyConf = $IP.'/extensions/tidy/tidy.conf';
1456 $wgTidyOpts = '';
1457 $wgTidyInternal = function_exists( 'tidy_load_config' );
1459 /** See list of skins and their symbolic names in languages/Language.php */
1460 $wgDefaultSkin = 'monobook';
1463 * Settings added to this array will override the language globals for the user
1464 * preferences used by anonymous visitors and newly created accounts. (See names
1465 * and sample values in languages/Language.php)
1466 * For instance, to disable section editing links:
1467 * $wgDefaultUserOptions ['editsection'] = 0;
1470 $wgDefaultUserOptions = array();
1472 /** Whether or not to allow and use real name fields. Defaults to true. */
1473 $wgAllowRealName = true;
1475 /** Use XML parser? */
1476 $wgUseXMLparser = false ;
1478 /** Extensions */
1479 $wgSkinExtensionFunctions = array();
1480 $wgExtensionFunctions = array();
1482 * An array of extension types and inside that their names, versions, authors
1483 * and urls, note that the version and url key can be omitted.
1485 * <code>
1486 * $wgExtensionCredits[$type][] = array(
1487 * 'name' => 'Example extension',
1488 * 'version' => 1.9,
1489 * 'author' => 'Foo Barstein',
1490 * 'url' => 'http://wwww.example.com/Example%20Extension/',
1491 * );
1492 * </code>
1494 * Where $type is 'specialpage', 'parserhook', or 'other'.
1496 $wgExtensionCredits = array();
1499 * Allow user Javascript page?
1500 * This enables a lot of neat customizations, but may
1501 * increase security risk to users and server load.
1503 $wgAllowUserJs = false;
1506 * Allow user Cascading Style Sheets (CSS)?
1507 * This enables a lot of neat customizations, but may
1508 * increase security risk to users and server load.
1510 $wgAllowUserCss = false;
1512 /** Use the site's Javascript page? */
1513 $wgUseSiteJs = true;
1515 /** Use the site's Cascading Style Sheets (CSS)? */
1516 $wgUseSiteCss = true;
1518 /** Filter for Special:Randompage. Part of a WHERE clause */
1519 $wgExtraRandompageSQL = false;
1521 /** Allow the "info" action, very inefficient at the moment */
1522 $wgAllowPageInfo = false;
1524 /** Maximum indent level of toc. */
1525 $wgMaxTocLevel = 999;
1527 /** Name of the external diff engine to use */
1528 $wgExternalDiffEngine = false;
1530 /** Use RC Patrolling to check for vandalism */
1531 $wgUseRCPatrol = true;
1533 /** Set maximum number of results to return in syndication feeds (RSS, Atom) for
1534 * eg Recentchanges, Newpages. */
1535 $wgFeedLimit = 50;
1537 /** _Minimum_ timeout for cached Recentchanges feed, in seconds.
1538 * A cached version will continue to be served out even if changes
1539 * are made, until this many seconds runs out since the last render.
1541 * If set to 0, feed caching is disabled. Use this for debugging only;
1542 * feed generation can be pretty slow with diffs.
1544 $wgFeedCacheTimeout = 60;
1546 /** When generating Recentchanges RSS/Atom feed, diffs will not be generated for
1547 * pages larger than this size. */
1548 $wgFeedDiffCutoff = 32768;
1552 * Additional namespaces. If the namespaces defined in Language.php and
1553 * Namespace.php are insufficient, you can create new ones here, for example,
1554 * to import Help files in other languages.
1555 * PLEASE NOTE: Once you delete a namespace, the pages in that namespace will
1556 * no longer be accessible. If you rename it, then you can access them through
1557 * the new namespace name.
1559 * Custom namespaces should start at 100 to avoid conflicting with standard
1560 * namespaces, and should always follow the even/odd main/talk pattern.
1562 #$wgExtraNamespaces =
1563 # array(100 => "Hilfe",
1564 # 101 => "Hilfe_Diskussion",
1565 # 102 => "Aide",
1566 # 103 => "Discussion_Aide"
1567 # );
1568 $wgExtraNamespaces = NULL;
1571 * Limit images on image description pages to a user-selectable limit. In order
1572 * to reduce disk usage, limits can only be selected from a list. This is the
1573 * list of settings the user can choose from:
1575 $wgImageLimits = array (
1576 array(320,240),
1577 array(640,480),
1578 array(800,600),
1579 array(1024,768),
1580 array(1280,1024),
1581 array(10000,10000) );
1584 * Adjust thumbnails on image pages according to a user setting. In order to
1585 * reduce disk usage, the values can only be selected from a list. This is the
1586 * list of settings the user can choose from:
1588 $wgThumbLimits = array(
1589 120,
1590 150,
1591 180,
1592 200,
1593 250,
1598 * On category pages, show thumbnail gallery for images belonging to that
1599 * category instead of listing them as articles.
1601 $wgCategoryMagicGallery = true;
1604 * Paging limit for categories
1606 $wgCategoryPagingLimit = 200;
1609 * Browser Blacklist for unicode non compliant browsers
1610 * Contains a list of regexps : "/regexp/" matching problematic browsers
1612 $wgBrowserBlackList = array(
1614 * Netscape 2-4 detection
1615 * The minor version may contain strings such as "Gold" or "SGoldC-SGI"
1616 * Lots of non-netscape user agents have "compatible", so it's useful to check for that
1617 * with a negative assertion. The [UIN] identifier specifies the level of security
1618 * in a Netscape/Mozilla browser, checking for it rules out a number of fakers.
1619 * The language string is unreliable, it is missing on NS4 Mac.
1621 * Reference: http://www.psychedelix.com/agents/index.shtml
1623 '/^Mozilla\/2\.[^ ]+ .*?\((?!compatible).*; [UIN]/',
1624 '/^Mozilla\/3\.[^ ]+ .*?\((?!compatible).*; [UIN]/',
1625 '/^Mozilla\/4\.[^ ]+ .*?\((?!compatible).*; [UIN]/',
1628 * MSIE on Mac OS 9 is teh sux0r, converts þ to <thorn>, ð to <eth>, Þ to <THORN> and Ð to <ETH>
1630 * Known useragents:
1631 * - Mozilla/4.0 (compatible; MSIE 5.0; Mac_PowerPC)
1632 * - Mozilla/4.0 (compatible; MSIE 5.15; Mac_PowerPC)
1633 * - Mozilla/4.0 (compatible; MSIE 5.23; Mac_PowerPC)
1634 * - [...]
1636 * @link http://en.wikipedia.org/w/index.php?title=User%3A%C6var_Arnfj%F6r%F0_Bjarmason%2Ftestme&diff=12356041&oldid=12355864
1637 * @link http://en.wikipedia.org/wiki/Template%3AOS9
1639 '/^Mozilla\/4\.0 \(compatible; MSIE \d+\.\d+; Mac_PowerPC\)/'
1643 * Fake out the timezone that the server thinks it's in. This will be used for
1644 * date display and not for what's stored in the DB. Leave to null to retain
1645 * your server's OS-based timezone value. This is the same as the timezone.
1647 * This variable is currently used ONLY for signature formatting, not for
1648 * anything else.
1650 # $wgLocaltimezone = 'GMT';
1651 # $wgLocaltimezone = 'PST8PDT';
1652 # $wgLocaltimezone = 'Europe/Sweden';
1653 # $wgLocaltimezone = 'CET';
1654 $wgLocaltimezone = null;
1657 * Set an offset from UTC in minutes to use for the default timezone setting
1658 * for anonymous users and new user accounts.
1660 * This setting is used for most date/time displays in the software, and is
1661 * overrideable in user preferences. It is *not* used for signature timestamps.
1663 * You can set it to match the configured server timezone like this:
1664 * $wgLocalTZoffset = date("Z") / 60;
1666 * If your server is not configured for the timezone you want, you can set
1667 * this in conjunction with the signature timezone and override the TZ
1668 * environment variable like so:
1669 * $wgLocaltimezone="Europe/Berlin";
1670 * putenv("TZ=$wgLocaltimezone");
1671 * $wgLocalTZoffset = date("Z") / 60;
1673 * Leave at NULL to show times in universal time (UTC/GMT).
1675 $wgLocalTZoffset = null;
1679 * When translating messages with wfMsg(), it is not always clear what should be
1680 * considered UI messages and what shoud be content messages.
1682 * For example, for regular wikipedia site like en, there should be only one
1683 * 'mainpage', therefore when getting the link of 'mainpage', we should treate
1684 * it as content of the site and call wfMsgForContent(), while for rendering the
1685 * text of the link, we call wfMsg(). The code in default behaves this way.
1686 * However, sites like common do offer different versions of 'mainpage' and the
1687 * like for different languages. This array provides a way to override the
1688 * default behavior. For example, to allow language specific mainpage and
1689 * community portal, set
1691 * $wgForceUIMsgAsContentMsg = array( 'mainpage', 'portal-url' );
1693 $wgForceUIMsgAsContentMsg = array();
1697 * Authentication plugin.
1699 $wgAuth = null;
1702 * Global list of hooks.
1703 * Add a hook by doing:
1704 * $wgHooks['event_name'][] = $function;
1705 * or:
1706 * $wgHooks['event_name'][] = array($function, $data);
1707 * or:
1708 * $wgHooks['event_name'][] = array($object, 'method');
1710 $wgHooks = array();
1713 * Experimental preview feature to fetch rendered text
1714 * over an XMLHttpRequest from JavaScript instead of
1715 * forcing a submit and reload of the whole page.
1716 * Leave disabled unless you're testing it.
1718 $wgLivePreview = false;
1721 * Disable the internal MySQL-based search, to allow it to be
1722 * implemented by an extension instead.
1724 $wgDisableInternalSearch = false;
1727 * Set this to a URL to forward search requests to some external location.
1728 * If the URL includes '$1', this will be replaced with the URL-encoded
1729 * search term.
1731 * For example, to forward to Google you'd have something like:
1732 * $wgSearchForwardUrl = 'http://www.google.com/search?q=$1' .
1733 * '&domains=http://example.com' .
1734 * '&sitesearch=http://example.com' .
1735 * '&ie=utf-8&oe=utf-8';
1737 $wgSearchForwardUrl = null;
1740 * If true, external URL links in wiki text will be given the
1741 * rel="nofollow" attribute as a hint to search engines that
1742 * they should not be followed for ranking purposes as they
1743 * are user-supplied and thus subject to spamming.
1745 $wgNoFollowLinks = true;
1748 * Specifies the minimal length of a user password. If set to
1749 * 0, empty passwords are allowed.
1751 $wgMinimalPasswordLength = 0;
1754 * Activate external editor interface for files and pages
1755 * See http://meta.wikimedia.org/wiki/Help:External_editors
1757 $wgUseExternalEditor = true;
1759 /** Whether or not to sort special pages in Special:Specialpages */
1761 $wgSortSpecialPages = true;
1764 * Specify the name of a skin that should not be presented in the
1765 * list of available skins.
1766 * Use for blacklisting a skin which you do not want to remove
1767 * from the .../skins/ directory
1769 $wgSkipSkin = '';
1770 $wgSkipSkins = array(); # More of the same
1773 * Array of disabled article actions, e.g. view, edit, dublincore, delete, etc.
1775 $wgDisabledActions = array();
1778 * Disable redirects to special pages and interwiki redirects, which use a 302 and have no "redirected from" link
1780 $wgDisableHardRedirects = false;
1783 * Use http.dnsbl.sorbs.net to check for open proxies
1785 $wgEnableSorbs = false;
1788 * Use opm.blitzed.org to check for open proxies.
1789 * Not yet actually used.
1791 $wgEnableOpm = false;
1794 * Proxy whitelist, list of addresses that are assumed to be non-proxy despite what the other
1795 * methods might say
1797 $wgProxyWhitelist = array();
1800 * Simple rate limiter options to brake edit floods.
1801 * Maximum number actions allowed in the given number of seconds;
1802 * after that the violating client receives HTTP 500 error pages
1803 * until the period elapses.
1805 * array( 4, 60 ) for a maximum of 4 hits in 60 seconds.
1807 * This option set is experimental and likely to change.
1808 * Requires memcached.
1810 $wgRateLimits = array(
1811 'edit' => array(
1812 'anon' => null, // for any and all anonymous edits (aggregate)
1813 'user' => null, // for each logged-in user
1814 'newbie' => null, // for each recent account; overrides 'user'
1815 'ip' => null, // for each anon and recent account
1816 'subnet' => null, // ... with final octet removed
1818 'move' => array(
1819 'user' => null,
1820 'newbie' => null,
1821 'ip' => null,
1822 'subnet' => null,
1827 * Set to a filename to log rate limiter hits.
1829 $wgRateLimitLog = null;
1832 * On Special:Unusedimages, consider images "used", if they are put
1833 * into a category. Default (false) is not to count those as used.
1835 $wgCountCategorizedImagesAsUsed = false;
1838 * External stores allow including content
1839 * from non database sources following URL links
1841 * Short names of ExternalStore classes may be specified in an array here:
1842 * $wgExternalStores = array("http","file","custom")...
1844 * CAUTION: Access to database might lead to code execution
1846 $wgExternalStores = false;
1849 * An array of external mysql servers, e.g.
1850 * $wgExternalServers = array( 'cluster1' => array( 'srv28', 'srv29', 'srv30' ) );
1852 $wgExternalServers = array();
1855 * The place to put new revisions, false to put them in the local text table.
1856 * Part of a URL, e.g. DB://cluster1
1858 * Can be an array instead of a single string, to enable data distribution. Keys
1859 * must be consecutive integers, starting at zero. Example:
1861 * $wgDefaultExternalStore = array( 'DB://cluster1', 'DB://cluster2' );
1864 $wgDefaultExternalStore = false;
1867 * list of trusted media-types and mime types.
1868 * Use the MEDIATYPE_xxx constants to represent media types.
1869 * This list is used by Image::isSafeFile
1871 * Types not listed here will have a warning about unsafe content
1872 * displayed on the images description page. It would also be possible
1873 * to use this for further restrictions, like disabling direct
1874 * [[media:...]] links for non-trusted formats.
1876 $wgTrustedMediaFormats= array(
1877 MEDIATYPE_BITMAP, //all bitmap formats
1878 MEDIATYPE_AUDIO, //all audio formats
1879 MEDIATYPE_VIDEO, //all plain video formats
1880 "image/svg", //svg (only needed if inline rendering of svg is not supported)
1881 "application/pdf", //PDF files
1882 #"application/x-shockwafe-flash", //flash/shockwave movie
1886 * Allow special page inclusions such as {{Special:Allpages}}
1888 $wgAllowSpecialInclusion = true;
1891 * Timeout for HTTP requests done via CURL
1893 $wgHTTPTimeout = 3;
1896 * Proxy to use for CURL requests.
1898 $wgHTTPProxy = false;
1901 * Enable interwiki transcluding. Only when iw_trans=1.
1903 $wgEnableScaryTranscluding = false;
1905 * Expiry time for interwiki transclusion
1907 $wgTranscludeCacheExpiry = 3600;
1910 * Support blog-style "trackbacks" for articles. See
1911 * http://www.sixapart.com/pronet/docs/trackback_spec for details.
1913 $wgUseTrackbacks = false;
1916 * Enable filtering of categories in Recentchanges
1918 $wgAllowCategorizedRecentChanges = false ;
1921 * Number of jobs to perform per request. May be less than one in which case
1922 * jobs are performed probabalistically. If this is zero, jobs will not be done
1923 * during ordinary apache requests. In this case, maintenance/doJobs.php should
1924 * be run periodically.
1926 $wgJobRunRate = 1;
1929 * Log file for job execution
1931 $wgJobLogFile = false;
1934 * Enable use of AJAX features, currently auto suggestion for the search bar
1936 $wgUseAjax = false;
1939 * List of Ajax-callable functions
1941 $wgAjaxExportList = array( 'wfSajaxSearch' );
1944 * Allow DISPLAYTITLE to change title display
1946 $wgAllowDisplayTitle = false ;
1949 * Array of usernames which may not be registered or logged in from
1950 * Maintenance scripts can still use these
1952 $wgReservedUsernames = array( 'MediaWiki default', 'Conversion script' );