(bug 10323) Special:Undelete should have "inverse selection" button
[mediawiki.git] / includes / DefaultSettings.php
blobea478c77b655961f259e96d01a376898d5dcb1c6
1 <?php
2 /**
4 * NEVER 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/Manual:Configuration_settings
20 # This is not a valid entry point, perform no further processing unless MEDIAWIKI is defined
21 if( !defined( 'MEDIAWIKI' ) ) {
22 echo "This file is part of MediaWiki and is not a valid entry point\n";
23 die( 1 );
26 /**
27 * Create a site configuration object
28 * Not used for much in a default install
30 require_once( "$IP/includes/SiteConfiguration.php" );
31 $wgConf = new SiteConfiguration;
33 /** MediaWiki version number */
34 $wgVersion = '1.14alpha';
36 /** Name of the site. It must be changed in LocalSettings.php */
37 $wgSitename = 'MediaWiki';
39 /**
40 * Name of the project namespace. If left set to false, $wgSitename will be
41 * used instead.
43 $wgMetaNamespace = false;
45 /**
46 * Name of the project talk namespace.
48 * Normally you can ignore this and it will be something like
49 * $wgMetaNamespace . "_talk". In some languages, you may want to set this
50 * manually for grammatical reasons. It is currently only respected by those
51 * languages where it might be relevant and where no automatic grammar converter
52 * exists.
54 $wgMetaNamespaceTalk = false;
57 /** URL of the server. It will be automatically built including https mode */
58 $wgServer = '';
60 if( isset( $_SERVER['SERVER_NAME'] ) ) {
61 $wgServerName = $_SERVER['SERVER_NAME'];
62 } elseif( isset( $_SERVER['HOSTNAME'] ) ) {
63 $wgServerName = $_SERVER['HOSTNAME'];
64 } elseif( isset( $_SERVER['HTTP_HOST'] ) ) {
65 $wgServerName = $_SERVER['HTTP_HOST'];
66 } elseif( isset( $_SERVER['SERVER_ADDR'] ) ) {
67 $wgServerName = $_SERVER['SERVER_ADDR'];
68 } else {
69 $wgServerName = 'localhost';
72 # check if server use https:
73 $wgProto = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 'https' : 'http';
75 $wgServer = $wgProto.'://' . $wgServerName;
76 # If the port is a non-standard one, add it to the URL
77 if( isset( $_SERVER['SERVER_PORT'] )
78 && !strpos( $wgServerName, ':' )
79 && ( ( $wgProto == 'http' && $_SERVER['SERVER_PORT'] != 80 )
80 || ( $wgProto == 'https' && $_SERVER['SERVER_PORT'] != 443 ) ) ) {
82 $wgServer .= ":" . $_SERVER['SERVER_PORT'];
86 /**
87 * The path we should point to.
88 * It might be a virtual path in case with use apache mod_rewrite for example
90 * This *needs* to be set correctly.
92 * Other paths will be set to defaults based on it unless they are directly
93 * set in LocalSettings.php
95 $wgScriptPath = '/wiki';
97 /**
98 * Whether to support URLs like index.php/Page_title These often break when PHP
99 * is set up in CGI mode. PATH_INFO *may* be correct if cgi.fix_pathinfo is set,
100 * but then again it may not; lighttpd converts incoming path data to lowercase
101 * on systems with case-insensitive filesystems, and there have been reports of
102 * problems on Apache as well.
104 * To be safe we'll continue to keep it off by default.
106 * Override this to false if $_SERVER['PATH_INFO'] contains unexpectedly
107 * incorrect garbage, or to true if it is really correct.
109 * The default $wgArticlePath will be set based on this value at runtime, but if
110 * you have customized it, having this incorrectly set to true can cause
111 * redirect loops when "pretty URLs" are used.
113 $wgUsePathInfo =
114 ( strpos( php_sapi_name(), 'cgi' ) === false ) &&
115 ( strpos( php_sapi_name(), 'apache2filter' ) === false ) &&
116 ( strpos( php_sapi_name(), 'isapi' ) === false );
119 /**@{
120 * Script users will request to get articles
121 * ATTN: Old installations used wiki.phtml and redirect.phtml - make sure that
122 * LocalSettings.php is correctly set!
124 * Will be set based on $wgScriptPath in Setup.php if not overridden in
125 * LocalSettings.php. Generally you should not need to change this unless you
126 * don't like seeing "index.php".
128 $wgScriptExtension = '.php'; ///< extension to append to script names by default
129 $wgScript = false; ///< defaults to "{$wgScriptPath}/index{$wgScriptExtension}"
130 $wgRedirectScript = false; ///< defaults to "{$wgScriptPath}/redirect{$wgScriptExtension}"
131 /**@}*/
134 /**@{
135 * These various web and file path variables are set to their defaults
136 * in Setup.php if they are not explicitly set from LocalSettings.php.
137 * If you do override them, be sure to set them all!
139 * These will relatively rarely need to be set manually, unless you are
140 * splitting style sheets or images outside the main document root.
143 * style path as seen by users
145 $wgStylePath = false; ///< defaults to "{$wgScriptPath}/skins"
147 * filesystem stylesheets directory
149 $wgStyleDirectory = false; ///< defaults to "{$IP}/skins"
150 $wgStyleSheetPath = &$wgStylePath;
151 $wgArticlePath = false; ///< default to "{$wgScript}/$1" or "{$wgScript}?title=$1", depending on $wgUsePathInfo
152 $wgVariantArticlePath = false;
153 $wgUploadPath = false; ///< defaults to "{$wgScriptPath}/images"
154 $wgUploadDirectory = false; ///< defaults to "{$IP}/images"
155 $wgHashedUploadDirectory = true;
156 $wgLogo = false; ///< defaults to "{$wgStylePath}/common/images/wiki.png"
157 $wgFavicon = '/favicon.ico';
158 $wgAppleTouchIcon = false; ///< This one'll actually default to off. For iPhone and iPod Touch web app bookmarks
159 $wgMathPath = false; ///< defaults to "{$wgUploadPath}/math"
160 $wgMathDirectory = false; ///< defaults to "{$wgUploadDirectory}/math"
161 $wgTmpDirectory = false; ///< defaults to "{$wgUploadDirectory}/tmp"
162 $wgUploadBaseUrl = "";
163 /**@}*/
166 * Default value for chmoding of new directories.
168 $wgDirectoryMode = 0777;
171 * New file storage paths; currently used only for deleted files.
172 * Set it like this:
174 * $wgFileStore['deleted']['directory'] = '/var/wiki/private/deleted';
177 $wgFileStore = array();
178 $wgFileStore['deleted']['directory'] = false;///< Defaults to $wgUploadDirectory/deleted
179 $wgFileStore['deleted']['url'] = null; ///< Private
180 $wgFileStore['deleted']['hash'] = 3; ///< 3-level subdirectory split
182 /**@{
183 * File repository structures
185 * $wgLocalFileRepo is a single repository structure, and $wgForeignFileRepo is
186 * a an array of such structures. Each repository structure is an associative
187 * array of properties configuring the repository.
189 * Properties required for all repos:
190 * class The class name for the repository. May come from the core or an extension.
191 * The core repository classes are LocalRepo, ForeignDBRepo, FSRepo.
193 * name A unique name for the repository.
195 * For all core repos:
196 * url Base public URL
197 * hashLevels The number of directory levels for hash-based division of files
198 * thumbScriptUrl The URL for thumb.php (optional, not recommended)
199 * transformVia404 Whether to skip media file transformation on parse and rely on a 404
200 * handler instead.
201 * initialCapital Equivalent to $wgCapitalLinks, determines whether filenames implicitly
202 * start with a capital letter. The current implementation may give incorrect
203 * description page links when the local $wgCapitalLinks and initialCapital
204 * are mismatched.
205 * pathDisclosureProtection
206 * May be 'paranoid' to remove all parameters from error messages, 'none' to
207 * leave the paths in unchanged, or 'simple' to replace paths with
208 * placeholders. Default for LocalRepo is 'simple'.
210 * These settings describe a foreign MediaWiki installation. They are optional, and will be ignored
211 * for local repositories:
212 * descBaseUrl URL of image description pages, e.g. http://en.wikipedia.org/wiki/Image:
213 * scriptDirUrl URL of the MediaWiki installation, equivalent to $wgScriptPath, e.g.
214 * http://en.wikipedia.org/w
216 * articleUrl Equivalent to $wgArticlePath, e.g. http://en.wikipedia.org/wiki/$1
217 * fetchDescription Fetch the text of the remote file description page. Equivalent to
218 * $wgFetchCommonsDescriptions.
220 * ForeignDBRepo:
221 * dbType, dbServer, dbUser, dbPassword, dbName, dbFlags
222 * equivalent to the corresponding member of $wgDBservers
223 * tablePrefix Table prefix, the foreign wiki's $wgDBprefix
224 * hasSharedCache True if the wiki's shared cache is accessible via the local $wgMemc
226 * The default is to initialise these arrays from the MW<1.11 backwards compatible settings:
227 * $wgUploadPath, $wgThumbnailScriptPath, $wgSharedUploadDirectory, etc.
229 $wgLocalFileRepo = false;
230 $wgForeignFileRepos = array();
231 /**@}*/
234 * Allowed title characters -- regex character class
235 * Don't change this unless you know what you're doing
237 * Problematic punctuation:
238 * []{}|# Are needed for link syntax, never enable these
239 * <> Causes problems with HTML escaping, don't use
240 * % Enabled by default, minor problems with path to query rewrite rules, see below
241 * + Enabled by default, but doesn't work with path to query rewrite rules, corrupted by apache
242 * ? Enabled by default, but doesn't work with path to PATH_INFO rewrites
244 * All three of these punctuation problems can be avoided by using an alias, instead of a
245 * rewrite rule of either variety.
247 * The problem with % is that when using a path to query rewrite rule, URLs are
248 * double-unescaped: once by Apache's path conversion code, and again by PHP. So
249 * %253F, for example, becomes "?". Our code does not double-escape to compensate
250 * for this, indeed double escaping would break if the double-escaped title was
251 * passed in the query string rather than the path. This is a minor security issue
252 * because articles can be created such that they are hard to view or edit.
254 * In some rare cases you may wish to remove + for compatibility with old links.
256 * Theoretically 0x80-0x9F of ISO 8859-1 should be disallowed, but
257 * this breaks interlanguage links
259 $wgLegalTitleChars = " %!\"$&'()*,\\-.\\/0-9:;=?@A-Z\\\\^_`a-z~\\x80-\\xFF+";
263 * The external URL protocols
265 $wgUrlProtocols = array(
266 'http://',
267 'https://',
268 'ftp://',
269 'irc://',
270 'gopher://',
271 'telnet://', // Well if we're going to support the above.. -ævar
272 'nntp://', // @bug 3808 RFC 1738
273 'worldwind://',
274 'mailto:',
275 'news:'
278 /** internal name of virus scanner. This servers as a key to the $wgAntivirusSetup array.
279 * Set this to NULL to disable virus scanning. If not null, every file uploaded will be scanned for viruses.
281 $wgAntivirus= NULL;
283 /** Configuration for different virus scanners. This an associative array of associative arrays:
284 * it contains on setup array per known scanner type. The entry is selected by $wgAntivirus, i.e.
285 * valid values for $wgAntivirus are the keys defined in this array.
287 * The configuration array for each scanner contains the following keys: "command", "codemap", "messagepattern";
289 * "command" is the full command to call the virus scanner - %f will be replaced with the name of the
290 * file to scan. If not present, the filename will be appended to the command. Note that this must be
291 * overwritten if the scanner is not in the system path; in that case, plase set
292 * $wgAntivirusSetup[$wgAntivirus]['command'] to the desired command with full path.
294 * "codemap" is a mapping of exit code to return codes of the detectVirus function in SpecialUpload.
295 * An exit code mapped to AV_SCAN_FAILED causes the function to consider the scan to be failed. This will pass
296 * the file if $wgAntivirusRequired is not set.
297 * An exit code mapped to AV_SCAN_ABORTED causes the function to consider the file to have an usupported format,
298 * which is probably imune to virusses. This causes the file to pass.
299 * An exit code mapped to AV_NO_VIRUS will cause the file to pass, meaning no virus was found.
300 * All other codes (like AV_VIRUS_FOUND) will cause the function to report a virus.
301 * You may use "*" as a key in the array to catch all exit codes not mapped otherwise.
303 * "messagepattern" is a perl regular expression to extract the meaningful part of the scanners
304 * output. The relevant part should be matched as group one (\1).
305 * If not defined or the pattern does not match, the full message is shown to the user.
307 $wgAntivirusSetup = array(
309 #setup for clamav
310 'clamav' => array (
311 'command' => "clamscan --no-summary ",
313 'codemap' => array (
314 "0" => AV_NO_VIRUS, # no virus
315 "1" => AV_VIRUS_FOUND, # virus found
316 "52" => AV_SCAN_ABORTED, # unsupported file format (probably imune)
317 "*" => AV_SCAN_FAILED, # else scan failed
320 'messagepattern' => '/.*?:(.*)/sim',
323 #setup for f-prot
324 'f-prot' => array (
325 'command' => "f-prot ",
327 'codemap' => array (
328 "0" => AV_NO_VIRUS, # no virus
329 "3" => AV_VIRUS_FOUND, # virus found
330 "6" => AV_VIRUS_FOUND, # virus found
331 "*" => AV_SCAN_FAILED, # else scan failed
334 'messagepattern' => '/.*?Infection:(.*)$/m',
339 /** Determines if a failed virus scan (AV_SCAN_FAILED) will cause the file to be rejected. */
340 $wgAntivirusRequired= true;
342 /** Determines if the mime type of uploaded files should be checked */
343 $wgVerifyMimeType= true;
345 /** Sets the mime type definition file to use by MimeMagic.php. */
346 $wgMimeTypeFile= "includes/mime.types";
347 #$wgMimeTypeFile= "/etc/mime.types";
348 #$wgMimeTypeFile= NULL; #use built-in defaults only.
350 /** Sets the mime type info file to use by MimeMagic.php. */
351 $wgMimeInfoFile= "includes/mime.info";
352 #$wgMimeInfoFile= NULL; #use built-in defaults only.
354 /** Switch for loading the FileInfo extension by PECL at runtime.
355 * This should be used only if fileinfo is installed as a shared object
356 * or a dynamic libary
358 $wgLoadFileinfoExtension= false;
360 /** Sets an external mime detector program. The command must print only
361 * the mime type to standard output.
362 * The name of the file to process will be appended to the command given here.
363 * If not set or NULL, mime_content_type will be used if available.
365 $wgMimeDetectorCommand= NULL; # use internal mime_content_type function, available since php 4.3.0
366 #$wgMimeDetectorCommand= "file -bi"; #use external mime detector (Linux)
368 /** Switch for trivial mime detection. Used by thumb.php to disable all fance
369 * things, because only a few types of images are needed and file extensions
370 * can be trusted.
372 $wgTrivialMimeDetection= false;
375 * Additional XML types we can allow via mime-detection.
376 * array = ( 'rootElement' => 'associatedMimeType' )
378 $wgXMLMimeTypes = array(
379 'http://www.w3.org/2000/svg:svg' => 'image/svg+xml',
380 'svg' => 'image/svg+xml',
381 'http://www.lysator.liu.se/~alla/dia/:diagram' => 'application/x-dia-diagram',
382 'http://www.w3.org/1999/xhtml:html' => 'text/html', // application/xhtml+xml?
383 'html' => 'text/html', // application/xhtml+xml?
387 * To set 'pretty' URL paths for actions other than
388 * plain page views, add to this array. For instance:
389 * 'edit' => "$wgScriptPath/edit/$1"
391 * There must be an appropriate script or rewrite rule
392 * in place to handle these URLs.
394 $wgActionPaths = array();
397 * If you operate multiple wikis, you can define a shared upload path here.
398 * Uploads to this wiki will NOT be put there - they will be put into
399 * $wgUploadDirectory.
400 * If $wgUseSharedUploads is set, the wiki will look in the shared repository if
401 * no file of the given name is found in the local repository (for [[Image:..]],
402 * [[Media:..]] links). Thumbnails will also be looked for and generated in this
403 * directory.
405 * Note that these configuration settings can now be defined on a per-
406 * repository basis for an arbitrary number of file repositories, using the
407 * $wgForeignFileRepos variable.
409 $wgUseSharedUploads = false;
410 /** Full path on the web server where shared uploads can be found */
411 $wgSharedUploadPath = "http://commons.wikimedia.org/shared/images";
412 /** Fetch commons image description pages and display them on the local wiki? */
413 $wgFetchCommonsDescriptions = false;
414 /** Path on the file system where shared uploads can be found. */
415 $wgSharedUploadDirectory = "/var/www/wiki3/images";
416 /** DB name with metadata about shared directory. Set this to false if the uploads do not come from a wiki. */
417 $wgSharedUploadDBname = false;
418 /** Optional table prefix used in database. */
419 $wgSharedUploadDBprefix = '';
420 /** Cache shared metadata in memcached. Don't do this if the commons wiki is in a different memcached domain */
421 $wgCacheSharedUploads = true;
422 /** Allow for upload to be copied from an URL. Requires Special:Upload?source=web */
423 $wgAllowCopyUploads = false;
425 * Max size for uploads, in bytes. Currently only works for uploads from URL
426 * via CURL (see $wgAllowCopyUploads). The only way to impose limits on
427 * normal uploads is currently to edit php.ini.
429 $wgMaxUploadSize = 1024*1024*100; # 100MB
432 * Point the upload navigation link to an external URL
433 * Useful if you want to use a shared repository by default
434 * without disabling local uploads (use $wgEnableUploads = false for that)
435 * e.g. $wgUploadNavigationUrl = 'http://commons.wikimedia.org/wiki/Special:Upload';
437 $wgUploadNavigationUrl = false;
440 * Give a path here to use thumb.php for thumbnail generation on client request, instead of
441 * generating them on render and outputting a static URL. This is necessary if some of your
442 * apache servers don't have read/write access to the thumbnail path.
444 * Example:
445 * $wgThumbnailScriptPath = "{$wgScriptPath}/thumb{$wgScriptExtension}";
447 $wgThumbnailScriptPath = false;
448 $wgSharedThumbnailScriptPath = false;
451 * Set the following to false especially if you have a set of files that need to
452 * be accessible by all wikis, and you do not want to use the hash (path/a/aa/)
453 * directory layout.
455 $wgHashedSharedUploadDirectory = true;
458 * Base URL for a repository wiki. Leave this blank if uploads are just stored
459 * in a shared directory and not meant to be accessible through a separate wiki.
460 * Otherwise the image description pages on the local wiki will link to the
461 * image description page on this wiki.
463 * Please specify the namespace, as in the example below.
465 $wgRepositoryBaseUrl = "http://commons.wikimedia.org/wiki/Image:";
468 # Email settings
472 * Site admin email address
473 * Default to wikiadmin@SERVER_NAME
475 $wgEmergencyContact = 'wikiadmin@' . $wgServerName;
478 * Password reminder email address
479 * The address we should use as sender when a user is requesting his password
480 * Default to apache@SERVER_NAME
482 $wgPasswordSender = 'MediaWiki Mail <apache@' . $wgServerName . '>';
485 * dummy address which should be accepted during mail send action
486 * It might be necessay to adapt the address or to set it equal
487 * to the $wgEmergencyContact address
489 #$wgNoReplyAddress = $wgEmergencyContact;
490 $wgNoReplyAddress = 'reply@not.possible';
493 * Set to true to enable the e-mail basic features:
494 * Password reminders, etc. If sending e-mail on your
495 * server doesn't work, you might want to disable this.
497 $wgEnableEmail = true;
500 * Set to true to enable user-to-user e-mail.
501 * This can potentially be abused, as it's hard to track.
503 $wgEnableUserEmail = true;
506 * Set to true to put the sending user's email in a Reply-To header
507 * instead of From. ($wgEmergencyContact will be used as From.)
509 * Some mailers (eg sSMTP) set the SMTP envelope sender to the From value,
510 * which can cause problems with SPF validation and leak recipient addressses
511 * when bounces are sent to the sender.
513 $wgUserEmailUseReplyTo = false;
516 * Minimum time, in hours, which must elapse between password reminder
517 * emails for a given account. This is to prevent abuse by mail flooding.
519 $wgPasswordReminderResendTime = 24;
522 * SMTP Mode
523 * For using a direct (authenticated) SMTP server connection.
524 * Default to false or fill an array :
525 * <code>
526 * "host" => 'SMTP domain',
527 * "IDHost" => 'domain for MessageID',
528 * "port" => "25",
529 * "auth" => true/false,
530 * "username" => user,
531 * "password" => password
532 * </code>
534 $wgSMTP = false;
537 /**@{
538 * Database settings
540 /** database host name or ip address */
541 $wgDBserver = 'localhost';
542 /** database port number */
543 $wgDBport = '';
544 /** name of the database */
545 $wgDBname = 'wikidb';
546 /** */
547 $wgDBconnection = '';
548 /** Database username */
549 $wgDBuser = 'wikiuser';
550 /** Database user's password */
551 $wgDBpassword = '';
552 /** Database type */
553 $wgDBtype = 'mysql';
555 /** Search type
556 * Leave as null to select the default search engine for the
557 * selected database type (eg SearchMySQL), or set to a class
558 * name to override to a custom search engine.
560 $wgSearchType = null;
562 /** Table name prefix */
563 $wgDBprefix = '';
564 /** MySQL table options to use during installation or update */
565 $wgDBTableOptions = 'ENGINE=InnoDB';
567 /** Mediawiki schema */
568 $wgDBmwschema = 'mediawiki';
569 /** Tsearch2 schema */
570 $wgDBts2schema = 'public';
572 /** To override default SQLite data directory ($docroot/../data) */
573 $wgSQLiteDataDir = '';
575 /** Default directory mode for SQLite data directory on creation.
576 * Note that this is different from the default directory mode used
577 * elsewhere.
579 $wgSQLiteDataDirMode = 0700;
582 * Make all database connections secretly go to localhost. Fool the load balancer
583 * thinking there is an arbitrarily large cluster of servers to connect to.
584 * Useful for debugging.
586 $wgAllDBsAreLocalhost = false;
588 /**@}*/
591 /** Live high performance sites should disable this - some checks acquire giant mysql locks */
592 $wgCheckDBSchema = true;
596 * Shared database for multiple wikis. Commonly used for storing a user table
597 * for single sign-on. The server for this database must be the same as for the
598 * main database.
599 * For backwards compatibility the shared prefix is set to the same as the local
600 * prefix, and the user table is listed in the default list of shared tables.
602 * $wgSharedTables may be customized with a list of tables to share in the shared
603 * datbase. However it is advised to limit what tables you do share as many of
604 * MediaWiki's tables may have side effects if you try to share them.
605 * EXPERIMENTAL
607 $wgSharedDB = null;
608 $wgSharedPrefix = false; # Defaults to $wgDBprefix
609 $wgSharedTables = array( 'user' );
612 * Database load balancer
613 * This is a two-dimensional array, an array of server info structures
614 * Fields are:
615 * host: Host name
616 * dbname: Default database name
617 * user: DB user
618 * password: DB password
619 * type: "mysql" or "postgres"
620 * load: ratio of DB_SLAVE load, must be >=0, the sum of all loads must be >0
621 * groupLoads: array of load ratios, the key is the query group name. A query may belong
622 * to several groups, the most specific group defined here is used.
624 * flags: bit field
625 * DBO_DEFAULT -- turns on DBO_TRX only if !$wgCommandLineMode (recommended)
626 * DBO_DEBUG -- equivalent of $wgDebugDumpSql
627 * DBO_TRX -- wrap entire request in a transaction
628 * DBO_IGNORE -- ignore errors (not useful in LocalSettings.php)
629 * DBO_NOBUFFER -- turn off buffering (not useful in LocalSettings.php)
631 * max lag: (optional) Maximum replication lag before a slave will taken out of rotation
632 * max threads: (optional) Maximum number of running threads
634 * These and any other user-defined properties will be assigned to the mLBInfo member
635 * variable of the Database object.
637 * Leave at false to use the single-server variables above. If you set this
638 * variable, the single-server variables will generally be ignored (except
639 * perhaps in some command-line scripts).
641 * The first server listed in this array (with key 0) will be the master. The
642 * rest of the servers will be slaves. To prevent writes to your slaves due to
643 * accidental misconfiguration or MediaWiki bugs, set read_only=1 on all your
644 * slaves in my.cnf. You can set read_only mode at runtime using:
646 * SET @@read_only=1;
648 * Since the effect of writing to a slave is so damaging and difficult to clean
649 * up, we at Wikimedia set read_only=1 in my.cnf on all our DB servers, even
650 * our masters, and then set read_only=0 on masters at runtime.
652 $wgDBservers = false;
655 * Load balancer factory configuration
656 * To set up a multi-master wiki farm, set the class here to something that
657 * can return a LoadBalancer with an appropriate master on a call to getMainLB().
658 * The class identified here is responsible for reading $wgDBservers,
659 * $wgDBserver, etc., so overriding it may cause those globals to be ignored.
661 * The LBFactory_Multi class is provided for this purpose, please see
662 * includes/db/LBFactory_Multi.php for configuration information.
664 $wgLBFactoryConf = array( 'class' => 'LBFactory_Simple' );
666 /** How long to wait for a slave to catch up to the master */
667 $wgMasterWaitTimeout = 10;
669 /** File to log database errors to */
670 $wgDBerrorLog = false;
672 /** When to give an error message */
673 $wgDBClusterTimeout = 10;
676 * Scale load balancer polling time so that under overload conditions, the database server
677 * receives a SHOW STATUS query at an average interval of this many microseconds
679 $wgDBAvgStatusPoll = 2000;
681 /** Set to true if using InnoDB tables */
682 $wgDBtransactions = false;
683 /** Set to true for compatibility with extensions that might be checking.
684 * MySQL 3.23.x is no longer supported. */
685 $wgDBmysql4 = true;
688 * Set to true to engage MySQL 4.1/5.0 charset-related features;
689 * for now will just cause sending of 'SET NAMES=utf8' on connect.
691 * WARNING: THIS IS EXPERIMENTAL!
693 * May break if you're not using the table defs from mysql5/tables.sql.
694 * May break if you're upgrading an existing wiki if set differently.
695 * Broken symptoms likely to include incorrect behavior with page titles,
696 * usernames, comments etc containing non-ASCII characters.
697 * Might also cause failures on the object cache and other things.
699 * Even correct usage may cause failures with Unicode supplementary
700 * characters (those not in the Basic Multilingual Plane) unless MySQL
701 * has enhanced their Unicode support.
703 $wgDBmysql5 = false;
706 * Other wikis on this site, can be administered from a single developer
707 * account.
708 * Array numeric key => database name
710 $wgLocalDatabases = array();
712 /** @{
713 * Object cache settings
714 * See Defines.php for types
716 $wgMainCacheType = CACHE_NONE;
717 $wgMessageCacheType = CACHE_ANYTHING;
718 $wgParserCacheType = CACHE_ANYTHING;
719 /**@}*/
721 $wgParserCacheExpireTime = 86400;
723 $wgSessionsInMemcached = false;
725 /**@{
726 * Memcached-specific settings
727 * See docs/memcached.txt
729 $wgUseMemCached = false;
730 $wgMemCachedDebug = false; ///< Will be set to false in Setup.php, if the server isn't working
731 $wgMemCachedServers = array( '127.0.0.1:11000' );
732 $wgMemCachedPersistent = false;
733 /**@}*/
736 * Directory for local copy of message cache, for use in addition to memcached
738 $wgLocalMessageCache = false;
740 * Defines format of local cache
741 * true - Serialized object
742 * false - PHP source file (Warning - security risk)
744 $wgLocalMessageCacheSerialized = true;
746 # Language settings
748 /** Site language code, should be one of ./languages/Language(.*).php */
749 $wgLanguageCode = 'en';
752 * Some languages need different word forms, usually for different cases.
753 * Used in Language::convertGrammar().
755 $wgGrammarForms = array();
756 #$wgGrammarForms['en']['genitive']['car'] = 'car\'s';
758 /** Treat language links as magic connectors, not inline links */
759 $wgInterwikiMagic = true;
761 /** Hide interlanguage links from the sidebar */
762 $wgHideInterlanguageLinks = false;
764 /** List of language names or overrides for default names in Names.php */
765 $wgExtraLanguageNames = array();
767 /** We speak UTF-8 all the time now, unless some oddities happen */
768 $wgInputEncoding = 'UTF-8';
769 $wgOutputEncoding = 'UTF-8';
770 $wgEditEncoding = '';
773 * Locale for LC_CTYPE, to work around http://bugs.php.net/bug.php?id=45132
774 * For Unix-like operating systems, set this to to a locale that has a UTF-8
775 * character set. Only the character set is relevant.
777 $wgShellLocale = 'en_US.utf8';
780 * Set this to eg 'ISO-8859-1' to perform character set
781 * conversion when loading old revisions not marked with
782 * "utf-8" flag. Use this when converting wiki to UTF-8
783 * without the burdensome mass conversion of old text data.
785 * NOTE! This DOES NOT touch any fields other than old_text.
786 * Titles, comments, user names, etc still must be converted
787 * en masse in the database before continuing as a UTF-8 wiki.
789 $wgLegacyEncoding = false;
792 * If set to true, the MediaWiki 1.4 to 1.5 schema conversion will
793 * create stub reference rows in the text table instead of copying
794 * the full text of all current entries from 'cur' to 'text'.
796 * This will speed up the conversion step for large sites, but
797 * requires that the cur table be kept around for those revisions
798 * to remain viewable.
800 * maintenance/migrateCurStubs.php can be used to complete the
801 * migration in the background once the wiki is back online.
803 * This option affects the updaters *only*. Any present cur stub
804 * revisions will be readable at runtime regardless of this setting.
806 $wgLegacySchemaConversion = false;
808 $wgMimeType = 'text/html';
809 $wgJsMimeType = 'text/javascript';
810 $wgDocType = '-//W3C//DTD XHTML 1.0 Transitional//EN';
811 $wgDTD = 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd';
812 $wgXhtmlDefaultNamespace = 'http://www.w3.org/1999/xhtml';
815 * Permit other namespaces in addition to the w3.org default.
816 * Use the prefix for the key and the namespace for the value. For
817 * example:
818 * $wgXhtmlNamespaces['svg'] = 'http://www.w3.org/2000/svg';
819 * Normally we wouldn't have to define this in the root <html>
820 * element, but IE needs it there in some circumstances.
822 $wgXhtmlNamespaces = array();
824 /** Enable to allow rewriting dates in page text.
825 * DOES NOT FORMAT CORRECTLY FOR MOST LANGUAGES */
826 $wgUseDynamicDates = false;
827 /** Enable dates like 'May 12' instead of '12 May', this only takes effect if
828 * the interface is set to English
830 $wgAmericanDates = false;
832 * For Hindi and Arabic use local numerals instead of Western style (0-9)
833 * numerals in interface.
835 $wgTranslateNumerals = true;
838 * Translation using MediaWiki: namespace.
839 * This will increase load times by 25-60% unless memcached is installed.
840 * Interface messages will be loaded from the database.
842 $wgUseDatabaseMessages = true;
845 * Expiry time for the message cache key
847 $wgMsgCacheExpiry = 86400;
850 * Maximum entry size in the message cache, in bytes
852 $wgMaxMsgCacheEntrySize = 10000;
855 * Set to false if you are thorough system admin who always remembers to keep
856 * serialized files up to date to save few mtime calls.
858 $wgCheckSerialized = true;
860 /** Whether to enable language variant conversion. */
861 $wgDisableLangConversion = false;
863 /** Whether to enable language variant conversion for links. */
864 $wgDisableTitleConversion = false;
866 /** Default variant code, if false, the default will be the language code */
867 $wgDefaultLanguageVariant = false;
870 * Show a bar of language selection links in the user login and user
871 * registration forms; edit the "loginlanguagelinks" message to
872 * customise these
874 $wgLoginLanguageSelector = false;
877 * Whether to use zhdaemon to perform Chinese text processing
878 * zhdaemon is under developement, so normally you don't want to
879 * use it unless for testing
881 $wgUseZhdaemon = false;
882 $wgZhdaemonHost="localhost";
883 $wgZhdaemonPort=2004;
886 # Miscellaneous configuration settings
889 $wgLocalInterwiki = 'w';
890 $wgInterwikiExpiry = 10800; # Expiry time for cache of interwiki table
892 /** Interwiki caching settings.
893 $wgInterwikiCache specifies path to constant database file
894 This cdb database is generated by dumpInterwiki from maintenance
895 and has such key formats:
896 dbname:key - a simple key (e.g. enwiki:meta)
897 _sitename:key - site-scope key (e.g. wiktionary:meta)
898 __global:key - global-scope key (e.g. __global:meta)
899 __sites:dbname - site mapping (e.g. __sites:enwiki)
900 Sites mapping just specifies site name, other keys provide
901 "local url" data layout.
902 $wgInterwikiScopes specify number of domains to check for messages:
903 1 - Just wiki(db)-level
904 2 - wiki and global levels
905 3 - site levels
906 $wgInterwikiFallbackSite - if unable to resolve from cache
908 $wgInterwikiCache = false;
909 $wgInterwikiScopes = 3;
910 $wgInterwikiFallbackSite = 'wiki';
913 * If local interwikis are set up which allow redirects,
914 * set this regexp to restrict URLs which will be displayed
915 * as 'redirected from' links.
917 * It might look something like this:
918 * $wgRedirectSources = '!^https?://[a-z-]+\.wikipedia\.org/!';
920 * Leave at false to avoid displaying any incoming redirect markers.
921 * This does not affect intra-wiki redirects, which don't change
922 * the URL.
924 $wgRedirectSources = false;
927 $wgShowIPinHeader = true; # For non-logged in users
928 $wgMaxSigChars = 255; # Maximum number of Unicode characters in signature
929 $wgMaxArticleSize = 2048; # Maximum article size in kilobytes
930 # Maximum number of bytes in username. You want to run the maintenance
931 # script ./maintenancecheckUsernames.php once you have changed this value
932 $wgMaxNameChars = 255;
934 $wgMaxPPNodeCount = 1000000; # A complexity limit on template expansion
937 * Maximum recursion depth for templates within templates.
938 * The current parser adds two levels to the PHP call stack for each template,
939 * and xdebug limits the call stack to 100 by default. So this should hopefully
940 * stop the parser before it hits the xdebug limit.
942 $wgMaxTemplateDepth = 40;
943 $wgMaxPPExpandDepth = 40;
946 * If true, removes (substitutes) templates in "~~~~" signatures.
948 $wgCleanSignatures = true;
950 $wgExtraSubtitle = '';
951 $wgSiteSupportPage = ''; # A page where you users can receive donations
953 /***
954 * If this lock file exists, the wiki will be forced into read-only mode.
955 * Its contents will be shown to users as part of the read-only warning
956 * message.
958 $wgReadOnlyFile = false; ///< defaults to "{$wgUploadDirectory}/lock_yBgMBwiR";
961 * The debug log file should be not be publicly accessible if it is used, as it
962 * may contain private data. */
963 $wgDebugLogFile = '';
965 $wgDebugRedirects = false;
966 $wgDebugRawPage = false; # Avoid overlapping debug entries by leaving out CSS
968 $wgDebugComments = false;
969 $wgReadOnly = null;
970 $wgLogQueries = false;
973 * Write SQL queries to the debug log
975 $wgDebugDumpSql = false;
978 * Set to an array of log group keys to filenames.
979 * If set, wfDebugLog() output for that group will go to that file instead
980 * of the regular $wgDebugLogFile. Useful for enabling selective logging
981 * in production.
983 $wgDebugLogGroups = array();
986 * Show the contents of $wgHooks in Special:Version
988 $wgSpecialVersionShowHooks = false;
991 * Whether to show "we're sorry, but there has been a database error" pages.
992 * Displaying errors aids in debugging, but may display information useful
993 * to an attacker.
995 $wgShowSQLErrors = false;
998 * If true, some error messages will be colorized when running scripts on the
999 * command line; this can aid picking important things out when debugging.
1000 * Ignored when running on Windows or when output is redirected to a file.
1002 $wgColorErrors = true;
1005 * If set to true, uncaught exceptions will print a complete stack trace
1006 * to output. This should only be used for debugging, as it may reveal
1007 * private information in function parameters due to PHP's backtrace
1008 * formatting.
1010 $wgShowExceptionDetails = false;
1013 * Expose backend server host names through the API and various HTML comments
1015 $wgShowHostnames = false;
1018 * Use experimental, DMOZ-like category browser
1020 $wgUseCategoryBrowser = false;
1023 * Keep parsed pages in a cache (objectcache table, turck, or memcached)
1024 * to speed up output of the same page viewed by another user with the
1025 * same options.
1027 * This can provide a significant speedup for medium to large pages,
1028 * so you probably want to keep it on.
1030 $wgEnableParserCache = true;
1033 * Append a configured value to the parser cache and the sitenotice key so
1034 * that they can be kept separate for some class of activity.
1036 $wgRenderHashAppend = '';
1039 * If on, the sidebar navigation links are cached for users with the
1040 * current language set. This can save a touch of load on a busy site
1041 * by shaving off extra message lookups.
1043 * However it is also fragile: changing the site configuration, or
1044 * having a variable $wgArticlePath, can produce broken links that
1045 * don't update as expected.
1047 $wgEnableSidebarCache = false;
1050 * Expiry time for the sidebar cache, in seconds
1052 $wgSidebarCacheExpiry = 86400;
1055 * Under which condition should a page in the main namespace be counted
1056 * as a valid article? If $wgUseCommaCount is set to true, it will be
1057 * counted if it contains at least one comma. If it is set to false
1058 * (default), it will only be counted if it contains at least one [[wiki
1059 * link]]. See http://meta.wikimedia.org/wiki/Help:Article_count
1061 * Retroactively changing this variable will not affect
1062 * the existing count (cf. maintenance/recount.sql).
1064 $wgUseCommaCount = false;
1067 * wgHitcounterUpdateFreq sets how often page counters should be updated, higher
1068 * values are easier on the database. A value of 1 causes the counters to be
1069 * updated on every hit, any higher value n cause them to update *on average*
1070 * every n hits. Should be set to either 1 or something largish, eg 1000, for
1071 * maximum efficiency.
1073 $wgHitcounterUpdateFreq = 1;
1075 # Basic user rights and block settings
1076 $wgSysopUserBans = true; # Allow sysops to ban logged-in users
1077 $wgSysopRangeBans = true; # Allow sysops to ban IP ranges
1078 $wgAutoblockExpiry = 86400; # Number of seconds before autoblock entries expire
1079 $wgBlockAllowsUTEdit = false; # Default setting for option on block form to allow self talkpage editing whilst blocked
1080 $wgSysopEmailBans = true; # Allow sysops to ban users from accessing Emailuser
1082 # Pages anonymous user may see as an array, e.g.:
1083 # array ( "Main Page", "Wikipedia:Help");
1084 # Special:Userlogin and Special:Resetpass are always whitelisted.
1085 # NOTE: This will only work if $wgGroupPermissions['*']['read']
1086 # is false -- see below. Otherwise, ALL pages are accessible,
1087 # regardless of this setting.
1088 # Also note that this will only protect _pages in the wiki_.
1089 # Uploaded files will remain readable. Make your upload
1090 # directory name unguessable, or use .htaccess to protect it.
1091 $wgWhitelistRead = false;
1094 * Should editors be required to have a validated e-mail
1095 * address before being allowed to edit?
1097 $wgEmailConfirmToEdit=false;
1100 * Permission keys given to users in each group.
1101 * All users are implicitly in the '*' group including anonymous visitors;
1102 * logged-in users are all implicitly in the 'user' group. These will be
1103 * combined with the permissions of all groups that a given user is listed
1104 * in in the user_groups table.
1106 * Note: Don't set $wgGroupPermissions = array(); unless you know what you're
1107 * doing! This will wipe all permissions, and may mean that your users are
1108 * unable to perform certain essential tasks or access new functionality
1109 * when new permissions are introduced and default grants established.
1111 * Functionality to make pages inaccessible has not been extensively tested
1112 * for security. Use at your own risk!
1114 * This replaces wgWhitelistAccount and wgWhitelistEdit
1116 $wgGroupPermissions = array();
1118 // Implicit group for all visitors
1119 $wgGroupPermissions['*' ]['createaccount'] = true;
1120 $wgGroupPermissions['*' ]['read'] = true;
1121 $wgGroupPermissions['*' ]['edit'] = true;
1122 $wgGroupPermissions['*' ]['createpage'] = true;
1123 $wgGroupPermissions['*' ]['createtalk'] = true;
1124 $wgGroupPermissions['*' ]['writeapi'] = true;
1126 // Implicit group for all logged-in accounts
1127 $wgGroupPermissions['user' ]['move'] = true;
1128 $wgGroupPermissions['user' ]['move-subpages'] = true;
1129 $wgGroupPermissions['user' ]['read'] = true;
1130 $wgGroupPermissions['user' ]['edit'] = true;
1131 $wgGroupPermissions['user' ]['createpage'] = true;
1132 $wgGroupPermissions['user' ]['createtalk'] = true;
1133 $wgGroupPermissions['user' ]['writeapi'] = true;
1134 $wgGroupPermissions['user' ]['upload'] = true;
1135 $wgGroupPermissions['user' ]['reupload'] = true;
1136 $wgGroupPermissions['user' ]['reupload-shared'] = true;
1137 $wgGroupPermissions['user' ]['minoredit'] = true;
1138 $wgGroupPermissions['user' ]['purge'] = true; // can use ?action=purge without clicking "ok"
1140 // Implicit group for accounts that pass $wgAutoConfirmAge
1141 $wgGroupPermissions['autoconfirmed']['autoconfirmed'] = true;
1143 // Users with bot privilege can have their edits hidden
1144 // from various log pages by default
1145 $wgGroupPermissions['bot' ]['bot'] = true;
1146 $wgGroupPermissions['bot' ]['autoconfirmed'] = true;
1147 $wgGroupPermissions['bot' ]['nominornewtalk'] = true;
1148 $wgGroupPermissions['bot' ]['autopatrol'] = true;
1149 $wgGroupPermissions['bot' ]['suppressredirect'] = true;
1150 $wgGroupPermissions['bot' ]['apihighlimits'] = true;
1151 $wgGroupPermissions['bot' ]['writeapi'] = true;
1152 #$wgGroupPermissions['bot' ]['editprotected'] = true; // can edit all protected pages without cascade protection enabled
1154 // Most extra permission abilities go to this group
1155 $wgGroupPermissions['sysop']['block'] = true;
1156 $wgGroupPermissions['sysop']['createaccount'] = true;
1157 $wgGroupPermissions['sysop']['delete'] = true;
1158 $wgGroupPermissions['sysop']['bigdelete'] = true; // can be separately configured for pages with > $wgDeleteRevisionsLimit revs
1159 $wgGroupPermissions['sysop']['deletedhistory'] = true; // can view deleted history entries, but not see or restore the text
1160 $wgGroupPermissions['sysop']['undelete'] = true;
1161 $wgGroupPermissions['sysop']['editinterface'] = true;
1162 $wgGroupPermissions['sysop']['editusercssjs'] = true;
1163 $wgGroupPermissions['sysop']['import'] = true;
1164 $wgGroupPermissions['sysop']['importupload'] = true;
1165 $wgGroupPermissions['sysop']['move'] = true;
1166 $wgGroupPermissions['sysop']['move-subpages'] = true;
1167 $wgGroupPermissions['sysop']['patrol'] = true;
1168 $wgGroupPermissions['sysop']['autopatrol'] = true;
1169 $wgGroupPermissions['sysop']['protect'] = true;
1170 $wgGroupPermissions['sysop']['proxyunbannable'] = true;
1171 $wgGroupPermissions['sysop']['rollback'] = true;
1172 $wgGroupPermissions['sysop']['trackback'] = true;
1173 $wgGroupPermissions['sysop']['upload'] = true;
1174 $wgGroupPermissions['sysop']['reupload'] = true;
1175 $wgGroupPermissions['sysop']['reupload-shared'] = true;
1176 $wgGroupPermissions['sysop']['unwatchedpages'] = true;
1177 $wgGroupPermissions['sysop']['autoconfirmed'] = true;
1178 $wgGroupPermissions['sysop']['upload_by_url'] = true;
1179 $wgGroupPermissions['sysop']['ipblock-exempt'] = true;
1180 $wgGroupPermissions['sysop']['blockemail'] = true;
1181 $wgGroupPermissions['sysop']['markbotedits'] = true;
1182 $wgGroupPermissions['sysop']['suppressredirect'] = true;
1183 $wgGroupPermissions['sysop']['apihighlimits'] = true;
1184 $wgGroupPermissions['sysop']['browsearchive'] = true;
1185 $wgGroupPermissions['sysop']['noratelimit'] = true;
1186 $wgGroupPermissions['sysop']['nuke'] = true;
1188 #$wgGroupPermissions['sysop']['mergehistory'] = true;
1190 // Permission to change users' group assignments
1191 $wgGroupPermissions['bureaucrat']['userrights'] = true;
1192 $wgGroupPermissions['bureaucrat']['noratelimit'] = true;
1193 // Permission to change users' groups assignments across wikis
1194 #$wgGroupPermissions['bureaucrat']['userrights-interwiki'] = true;
1196 #$wgGroupPermissions['sysop']['deleterevision'] = true;
1197 // To hide usernames from users and Sysops
1198 #$wgGroupPermissions['suppress']['hideuser'] = true;
1199 // To hide revisions/log items from users and Sysops
1200 #$wgGroupPermissions['suppress']['suppressrevision'] = true;
1201 // For private suppression log access
1202 #$wgGroupPermissions['suppress']['suppressionlog'] = true;
1205 * The developer group is deprecated, but can be activated if need be
1206 * to use the 'lockdb' and 'unlockdb' special pages. Those require
1207 * that a lock file be defined and creatable/removable by the web
1208 * server.
1210 # $wgGroupPermissions['developer']['siteadmin'] = true;
1214 * Implicit groups, aren't shown on Special:Listusers or somewhere else
1216 $wgImplicitGroups = array( '*', 'user', 'autoconfirmed' );
1219 * These are the groups that users are allowed to add to or remove from
1220 * their own account via Special:Userrights.
1222 $wgGroupsAddToSelf = array();
1223 $wgGroupsRemoveFromSelf = array();
1226 * Set of available actions that can be restricted via action=protect
1227 * You probably shouldn't change this.
1228 * Translated trough restriction-* messages.
1230 $wgRestrictionTypes = array( 'edit', 'move' );
1233 * Rights which can be required for each protection level (via action=protect)
1235 * You can add a new protection level that requires a specific
1236 * permission by manipulating this array. The ordering of elements
1237 * dictates the order on the protection form's lists.
1239 * '' will be ignored (i.e. unprotected)
1240 * 'sysop' is quietly rewritten to 'protect' for backwards compatibility
1242 $wgRestrictionLevels = array( '', 'autoconfirmed', 'sysop' );
1245 * Set the minimum permissions required to edit pages in each
1246 * namespace. If you list more than one permission, a user must
1247 * have all of them to edit pages in that namespace.
1249 * Note: NS_MEDIAWIKI is implicitly restricted to editinterface.
1251 $wgNamespaceProtection = array();
1254 * Pages in namespaces in this array can not be used as templates.
1255 * Elements must be numeric namespace ids.
1256 * Among other things, this may be useful to enforce read-restrictions
1257 * which may otherwise be bypassed by using the template machanism.
1259 $wgNonincludableNamespaces = array();
1262 * Number of seconds an account is required to age before
1263 * it's given the implicit 'autoconfirm' group membership.
1264 * This can be used to limit privileges of new accounts.
1266 * Accounts created by earlier versions of the software
1267 * may not have a recorded creation date, and will always
1268 * be considered to pass the age test.
1270 * When left at 0, all registered accounts will pass.
1272 $wgAutoConfirmAge = 0;
1273 //$wgAutoConfirmAge = 600; // ten minutes
1274 //$wgAutoConfirmAge = 3600*24; // one day
1276 # Number of edits an account requires before it is autoconfirmed
1277 # Passing both this AND the time requirement is needed
1278 $wgAutoConfirmCount = 0;
1279 //$wgAutoConfirmCount = 50;
1282 * Automatically add a usergroup to any user who matches certain conditions.
1283 * The format is
1284 * array( '&' or '|' or '^', cond1, cond2, ... )
1285 * where cond1, cond2, ... are themselves conditions; *OR*
1286 * APCOND_EMAILCONFIRMED, *OR*
1287 * array( APCOND_EMAILCONFIRMED ), *OR*
1288 * array( APCOND_EDITCOUNT, number of edits ), *OR*
1289 * array( APCOND_AGE, seconds since registration ), *OR*
1290 * similar constructs defined by extensions.
1292 * If $wgEmailAuthentication is off, APCOND_EMAILCONFIRMED will be true for any
1293 * user who has provided an e-mail address.
1295 $wgAutopromote = array(
1296 'autoconfirmed' => array( '&',
1297 array( APCOND_EDITCOUNT, &$wgAutoConfirmCount ),
1298 array( APCOND_AGE, &$wgAutoConfirmAge ),
1303 * These settings can be used to give finer control over who can assign which
1304 * groups at Special:Userrights. Example configuration:
1306 * // Bureaucrat can add any group
1307 * $wgAddGroups['bureaucrat'] = true;
1308 * // Bureaucrats can only remove bots and sysops
1309 * $wgRemoveGroups['bureaucrat'] = array( 'bot', 'sysop' );
1310 * // Sysops can make bots
1311 * $wgAddGroups['sysop'] = array( 'bot' );
1312 * // Sysops can disable other sysops in an emergency, and disable bots
1313 * $wgRemoveGroups['sysop'] = array( 'sysop', 'bot' );
1315 $wgAddGroups = array();
1316 $wgRemoveGroups = array();
1319 * A list of available rights, in addition to the ones defined by the core.
1320 * For extensions only.
1322 $wgAvailableRights = array();
1325 * Optional to restrict deletion of pages with higher revision counts
1326 * to users with the 'bigdelete' permission. (Default given to sysops.)
1328 $wgDeleteRevisionsLimit = 0;
1331 * Used to figure out if a user is "active" or not. User::isActiveEditor()
1332 * sees if a user has made at least $wgActiveUserEditCount number of edits
1333 * within the last $wgActiveUserDays days.
1335 $wgActiveUserEditCount = 30;
1336 $wgActiveUserDays = 30;
1338 # Proxy scanner settings
1342 * If you enable this, every editor's IP address will be scanned for open HTTP
1343 * proxies.
1345 * Don't enable this. Many sysops will report "hostile TCP port scans" to your
1346 * ISP and ask for your server to be shut down.
1348 * You have been warned.
1350 $wgBlockOpenProxies = false;
1351 /** Port we want to scan for a proxy */
1352 $wgProxyPorts = array( 80, 81, 1080, 3128, 6588, 8000, 8080, 8888, 65506 );
1353 /** Script used to scan */
1354 $wgProxyScriptPath = "$IP/includes/proxy_check.php";
1355 /** */
1356 $wgProxyMemcExpiry = 86400;
1357 /** This should always be customised in LocalSettings.php */
1358 $wgSecretKey = false;
1359 /** big list of banned IP addresses, in the keys not the values */
1360 $wgProxyList = array();
1361 /** deprecated */
1362 $wgProxyKey = false;
1364 /** Number of accounts each IP address may create, 0 to disable.
1365 * Requires memcached */
1366 $wgAccountCreationThrottle = 0;
1368 # Client-side caching:
1370 /** Allow client-side caching of pages */
1371 $wgCachePages = true;
1374 * Set this to current time to invalidate all prior cached pages. Affects both
1375 * client- and server-side caching.
1376 * You can get the current date on your server by using the command:
1377 * date +%Y%m%d%H%M%S
1379 $wgCacheEpoch = '20030516000000';
1382 * Bump this number when changing the global style sheets and JavaScript.
1383 * It should be appended in the query string of static CSS and JS includes,
1384 * to ensure that client-side caches don't keep obsolete copies of global
1385 * styles.
1387 $wgStyleVersion = '179';
1390 # Server-side caching:
1393 * This will cache static pages for non-logged-in users to reduce
1394 * database traffic on public sites.
1395 * Must set $wgShowIPinHeader = false
1397 $wgUseFileCache = false;
1399 /** Directory where the cached page will be saved */
1400 $wgFileCacheDirectory = false; ///< defaults to "{$wgUploadDirectory}/cache";
1403 * When using the file cache, we can store the cached HTML gzipped to save disk
1404 * space. Pages will then also be served compressed to clients that support it.
1405 * THIS IS NOT COMPATIBLE with ob_gzhandler which is now enabled if supported in
1406 * the default LocalSettings.php! If you enable this, remove that setting first.
1408 * Requires zlib support enabled in PHP.
1410 $wgUseGzip = false;
1412 /** Whether MediaWiki should send an ETag header */
1413 $wgUseETag = false;
1415 # Email notification settings
1418 /** For email notification on page changes */
1419 $wgPasswordSender = $wgEmergencyContact;
1421 # true: from page editor if s/he opted-in
1422 # false: Enotif mails appear to come from $wgEmergencyContact
1423 $wgEnotifFromEditor = false;
1425 // TODO move UPO to preferences probably ?
1426 # If set to true, users get a corresponding option in their preferences and can choose to enable or disable at their discretion
1427 # If set to false, the corresponding input form on the user preference page is suppressed
1428 # It call this to be a "user-preferences-option (UPO)"
1429 $wgEmailAuthentication = true; # UPO (if this is set to false, texts referring to authentication are suppressed)
1430 $wgEnotifWatchlist = false; # UPO
1431 $wgEnotifUserTalk = false; # UPO
1432 $wgEnotifRevealEditorAddress = false; # UPO; reply-to address may be filled with page editor's address (if user allowed this in the preferences)
1433 $wgEnotifMinorEdits = true; # UPO; false: "minor edits" on pages do not trigger notification mails.
1434 # # Attention: _every_ change on a user_talk page trigger a notification mail (if the user is not yet notified)
1436 # Send a generic mail instead of a personalised mail for each user. This
1437 # always uses UTC as the time zone, and doesn't include the username.
1439 # For pages with many users watching, this can significantly reduce mail load.
1440 # Has no effect when using sendmail rather than SMTP;
1442 $wgEnotifImpersonal = false;
1444 # Maximum number of users to mail at once when using impersonal mail. Should
1445 # match the limit on your mail server.
1446 $wgEnotifMaxRecips = 500;
1448 # Send mails via the job queue.
1449 $wgEnotifUseJobQ = false;
1452 * Array of usernames who will be sent a notification email for every change which occurs on a wiki
1454 $wgUsersNotifiedOnAllChanges = array();
1456 /** Show watching users in recent changes, watchlist and page history views */
1457 $wgRCShowWatchingUsers = false; # UPO
1458 /** Show watching users in Page views */
1459 $wgPageShowWatchingUsers = false;
1460 /** Show the amount of changed characters in recent changes */
1461 $wgRCShowChangedSize = true;
1464 * If the difference between the character counts of the text
1465 * before and after the edit is below that value, the value will be
1466 * highlighted on the RC page.
1468 $wgRCChangedSizeThreshold = -500;
1471 * Show "Updated (since my last visit)" marker in RC view, watchlist and history
1472 * view for watched pages with new changes */
1473 $wgShowUpdatedMarker = true;
1476 * Default cookie expiration time. Setting to 0 makes all cookies session-only.
1478 $wgCookieExpiration = 30*86400;
1480 /** Clock skew or the one-second resolution of time() can occasionally cause cache
1481 * problems when the user requests two pages within a short period of time. This
1482 * variable adds a given number of seconds to vulnerable timestamps, thereby giving
1483 * a grace period.
1485 $wgClockSkewFudge = 5;
1487 # Squid-related settings
1490 /** Enable/disable Squid */
1491 $wgUseSquid = false;
1493 /** If you run Squid3 with ESI support, enable this (default:false): */
1494 $wgUseESI = false;
1496 /** Internal server name as known to Squid, if different */
1497 # $wgInternalServer = 'http://yourinternal.tld:8000';
1498 $wgInternalServer = $wgServer;
1501 * Cache timeout for the squid, will be sent as s-maxage (without ESI) or
1502 * Surrogate-Control (with ESI). Without ESI, you should strip out s-maxage in
1503 * the Squid config. 18000 seconds = 5 hours, more cache hits with 2678400 = 31
1504 * days
1506 $wgSquidMaxage = 18000;
1509 * Default maximum age for raw CSS/JS accesses
1511 $wgForcedRawSMaxage = 300;
1514 * List of proxy servers to purge on changes; default port is 80. Use IP addresses.
1516 * When MediaWiki is running behind a proxy, it will trust X-Forwarded-For
1517 * headers sent/modified from these proxies when obtaining the remote IP address
1519 * For a list of trusted servers which *aren't* purged, see $wgSquidServersNoPurge.
1521 $wgSquidServers = array();
1524 * As above, except these servers aren't purged on page changes; use to set a
1525 * list of trusted proxies, etc.
1527 $wgSquidServersNoPurge = array();
1529 /** Maximum number of titles to purge in any one client operation */
1530 $wgMaxSquidPurgeTitles = 400;
1532 /** HTCP multicast purging */
1533 $wgHTCPPort = 4827;
1534 $wgHTCPMulticastTTL = 1;
1535 # $wgHTCPMulticastAddress = "224.0.0.85";
1536 $wgHTCPMulticastAddress = false;
1538 # Cookie settings:
1541 * Set to set an explicit domain on the login cookies eg, "justthis.domain. org"
1542 * or ".any.subdomain.net"
1544 $wgCookieDomain = '';
1545 $wgCookiePath = '/';
1546 $wgCookieSecure = ($wgProto == 'https');
1547 $wgDisableCookieCheck = false;
1550 * Set $wgCookiePrefix to use a custom one. Setting to false sets the default of
1551 * using the database name.
1553 $wgCookiePrefix = false;
1556 * Set authentication cookies to HttpOnly to prevent access by JavaScript,
1557 * in browsers that support this feature. This can mitigates some classes of
1558 * XSS attack.
1560 * Only supported on PHP 5.2 or higher.
1562 $wgCookieHttpOnly = version_compare("5.2", PHP_VERSION, "<");
1565 * If the requesting browser matches a regex in this blacklist, we won't
1566 * send it cookies with HttpOnly mode, even if $wgCookieHttpOnly is on.
1568 $wgHttpOnlyBlacklist = array(
1569 // Internet Explorer for Mac; sometimes the cookies work, sometimes
1570 // they don't. It's difficult to predict, as combinations of path
1571 // and expiration options affect its parsing.
1572 '/^Mozilla\/4\.0 \(compatible; MSIE \d+\.\d+; Mac_PowerPC\)/',
1575 /** A list of cookies that vary the cache (for use by extensions) */
1576 $wgCacheVaryCookies = array();
1578 /** Override to customise the session name */
1579 $wgSessionName = false;
1581 /** Whether to allow inline image pointing to other websites */
1582 $wgAllowExternalImages = false;
1584 /** If the above is false, you can specify an exception here. Image URLs
1585 * that start with this string are then rendered, while all others are not.
1586 * You can use this to set up a trusted, simple repository of images.
1587 * You may also specify an array of strings to allow multiple sites
1589 * Examples:
1590 * $wgAllowExternalImagesFrom = 'http://127.0.0.1/';
1591 * $wgAllowExternalImagesFrom = array( 'http://127.0.0.1/', 'http://example.com' );
1593 $wgAllowExternalImagesFrom = '';
1595 /** If $wgAllowExternalImages is false, you can allow an on-wiki
1596 * whitelist of regular expression fragments to match the image URL
1597 * against. If the image matches one of the regular expression fragments,
1598 * The image will be displayed.
1600 * Set this to true to enable the on-wiki whitelist (MediaWiki:External image whitelist)
1601 * Or false to disable it
1603 $wgEnableImageWhitelist = true;
1605 /** Allows to move images and other media files. Experemintal, not sure if it always works */
1606 $wgAllowImageMoving = false;
1608 /** Disable database-intensive features */
1609 $wgMiserMode = false;
1610 /** Disable all query pages if miser mode is on, not just some */
1611 $wgDisableQueryPages = false;
1612 /** Number of rows to cache in 'querycache' table when miser mode is on */
1613 $wgQueryCacheLimit = 1000;
1614 /** Number of links to a page required before it is deemed "wanted" */
1615 $wgWantedPagesThreshold = 1;
1616 /** Enable slow parser functions */
1617 $wgAllowSlowParserFunctions = false;
1620 * Maps jobs to their handling classes; extensions
1621 * can add to this to provide custom jobs
1623 $wgJobClasses = array(
1624 'refreshLinks' => 'RefreshLinksJob',
1625 'refreshLinks2' => 'RefreshLinksJob2',
1626 'htmlCacheUpdate' => 'HTMLCacheUpdateJob',
1627 'html_cache_update' => 'HTMLCacheUpdateJob', // backwards-compatible
1628 'sendMail' => 'EmaillingJob',
1629 'enotifNotify' => 'EnotifNotifyJob',
1630 'fixDoubleRedirect' => 'DoubleRedirectJob',
1634 * Additional functions to be performed with updateSpecialPages.
1635 * Expensive Querypages are already updated.
1637 $wgSpecialPageCacheUpdates = array(
1638 'Statistics' => array('SiteStatsUpdate','cacheUpdate')
1642 * To use inline TeX, you need to compile 'texvc' (in the 'math' subdirectory of
1643 * the MediaWiki package and have latex, dvips, gs (ghostscript), andconvert
1644 * (ImageMagick) installed and available in the PATH.
1645 * Please see math/README for more information.
1647 $wgUseTeX = false;
1648 /** Location of the texvc binary */
1649 $wgTexvc = './math/texvc';
1652 # Profiling / debugging
1654 # You have to create a 'profiling' table in your database before using
1655 # profiling see maintenance/archives/patch-profiling.sql .
1657 # To enable profiling, edit StartProfiler.php
1659 /** Only record profiling info for pages that took longer than this */
1660 $wgProfileLimit = 0.0;
1661 /** Don't put non-profiling info into log file */
1662 $wgProfileOnly = false;
1663 /** Log sums from profiling into "profiling" table in db. */
1664 $wgProfileToDatabase = false;
1665 /** If true, print a raw call tree instead of per-function report */
1666 $wgProfileCallTree = false;
1667 /** Should application server host be put into profiling table */
1668 $wgProfilePerHost = false;
1670 /** Settings for UDP profiler */
1671 $wgUDPProfilerHost = '127.0.0.1';
1672 $wgUDPProfilerPort = '3811';
1674 /** Detects non-matching wfProfileIn/wfProfileOut calls */
1675 $wgDebugProfiling = false;
1676 /** Output debug message on every wfProfileIn/wfProfileOut */
1677 $wgDebugFunctionEntry = 0;
1678 /** Lots of debugging output from SquidUpdate.php */
1679 $wgDebugSquid = false;
1682 * Destination for wfIncrStats() data...
1683 * 'cache' to go into the system cache, if enabled (memcached)
1684 * 'udp' to be sent to the UDP profiler (see $wgUDPProfilerHost)
1685 * false to disable
1687 $wgStatsMethod = 'cache';
1689 /** Whereas to count the number of time an article is viewed.
1690 * Does not work if pages are cached (for example with squid).
1692 $wgDisableCounters = false;
1694 $wgDisableTextSearch = false;
1695 $wgDisableSearchContext = false;
1699 * Set to true to have nicer highligted text in search results,
1700 * by default off due to execution overhead
1702 $wgAdvancedSearchHighlighting = false;
1705 * Regexp to match word boundaries, defaults for non-CJK languages
1706 * should be empty for CJK since the words are not separate
1708 $wgSearchHighlightBoundaries = version_compare("5.1", PHP_VERSION, "<")? '[\p{Z}\p{P}\p{C}]'
1709 : '[ ,.;:!?~!@#$%\^&*\(\)+=\-\\|\[\]"\'<>\n\r\/{}]'; // PHP 5.0 workaround
1712 * Template for OpenSearch suggestions, defaults to API action=opensearch
1714 * Sites with heavy load would tipically have these point to a custom
1715 * PHP wrapper to avoid firing up mediawiki for every keystroke
1717 * Placeholders: {searchTerms}
1720 $wgOpenSearchTemplate = false;
1723 * Enable suggestions while typing in search boxes
1724 * (results are passed around in OpenSearch format)
1726 $wgEnableMWSuggest = false;
1729 * Template for internal MediaWiki suggestion engine, defaults to API action=opensearch
1731 * Placeholders: {searchTerms}, {namespaces}, {dbname}
1734 $wgMWSuggestTemplate = false;
1737 * If you've disabled search semi-permanently, this also disables updates to the
1738 * table. If you ever re-enable, be sure to rebuild the search table.
1740 $wgDisableSearchUpdate = false;
1741 /** Uploads have to be specially set up to be secure */
1742 $wgEnableUploads = false;
1744 * Show EXIF data, on by default if available.
1745 * Requires PHP's EXIF extension: http://www.php.net/manual/en/ref.exif.php
1747 * NOTE FOR WINDOWS USERS:
1748 * To enable EXIF functions, add the folloing lines to the
1749 * "Windows extensions" section of php.ini:
1751 * extension=extensions/php_mbstring.dll
1752 * extension=extensions/php_exif.dll
1754 $wgShowEXIF = function_exists( 'exif_read_data' );
1757 * Set to true to enable the upload _link_ while local uploads are disabled.
1758 * Assumes that the special page link will be bounced to another server where
1759 * uploads do work.
1761 $wgRemoteUploads = false;
1762 $wgDisableAnonTalk = false;
1764 * Do DELETE/INSERT for link updates instead of incremental
1766 $wgUseDumbLinkUpdate = false;
1769 * Anti-lock flags - bitfield
1770 * ALF_PRELOAD_LINKS
1771 * Preload links during link update for save
1772 * ALF_PRELOAD_EXISTENCE
1773 * Preload cur_id during replaceLinkHolders
1774 * ALF_NO_LINK_LOCK
1775 * Don't use locking reads when updating the link table. This is
1776 * necessary for wikis with a high edit rate for performance
1777 * reasons, but may cause link table inconsistency
1778 * ALF_NO_BLOCK_LOCK
1779 * As for ALF_LINK_LOCK, this flag is a necessity for high-traffic
1780 * wikis.
1782 $wgAntiLockFlags = 0;
1785 * Path to the GNU diff3 utility. If the file doesn't exist, edit conflicts will
1786 * fall back to the old behaviour (no merging).
1788 $wgDiff3 = '/usr/bin/diff3';
1791 * Path to the GNU diff utility.
1793 $wgDiff = '/usr/bin/diff';
1796 * We can also compress text stored in the 'text' table. If this is set on, new
1797 * revisions will be compressed on page save if zlib support is available. Any
1798 * compressed revisions will be decompressed on load regardless of this setting
1799 * *but will not be readable at all* if zlib support is not available.
1801 $wgCompressRevisions = false;
1804 * This is the list of preferred extensions for uploading files. Uploading files
1805 * with extensions not in this list will trigger a warning.
1807 $wgFileExtensions = array( 'png', 'gif', 'jpg', 'jpeg' );
1809 /** Files with these extensions will never be allowed as uploads. */
1810 $wgFileBlacklist = array(
1811 # HTML may contain cookie-stealing JavaScript and web bugs
1812 'html', 'htm', 'js', 'jsb', 'mhtml', 'mht',
1813 # PHP scripts may execute arbitrary code on the server
1814 'php', 'phtml', 'php3', 'php4', 'php5', 'phps',
1815 # Other types that may be interpreted by some servers
1816 'shtml', 'jhtml', 'pl', 'py', 'cgi',
1817 # May contain harmful executables for Windows victims
1818 'exe', 'scr', 'dll', 'msi', 'vbs', 'bat', 'com', 'pif', 'cmd', 'vxd', 'cpl' );
1820 /** Files with these mime types will never be allowed as uploads
1821 * if $wgVerifyMimeType is enabled.
1823 $wgMimeTypeBlacklist= array(
1824 # HTML may contain cookie-stealing JavaScript and web bugs
1825 'text/html', 'text/javascript', 'text/x-javascript', 'application/x-shellscript',
1826 # PHP scripts may execute arbitrary code on the server
1827 'application/x-php', 'text/x-php',
1828 # Other types that may be interpreted by some servers
1829 'text/x-python', 'text/x-perl', 'text/x-bash', 'text/x-sh', 'text/x-csh',
1830 # Windows metafile, client-side vulnerability on some systems
1831 'application/x-msmetafile',
1832 # A ZIP file may be a valid Java archive containing an applet which exploits the
1833 # same-origin policy to steal cookies
1834 'application/zip',
1837 /** This is a flag to determine whether or not to check file extensions on upload. */
1838 $wgCheckFileExtensions = true;
1841 * If this is turned off, users may override the warning for files not covered
1842 * by $wgFileExtensions.
1844 $wgStrictFileExtensions = true;
1846 /** Warn if uploaded files are larger than this (in bytes), or false to disable*/
1847 $wgUploadSizeWarning = false;
1849 /** For compatibility with old installations set to false */
1850 $wgPasswordSalt = true;
1852 /** Which namespaces should support subpages?
1853 * See Language.php for a list of namespaces.
1855 $wgNamespacesWithSubpages = array(
1856 NS_TALK => true,
1857 NS_USER => true,
1858 NS_USER_TALK => true,
1859 NS_PROJECT_TALK => true,
1860 NS_IMAGE_TALK => true,
1861 NS_MEDIAWIKI_TALK => true,
1862 NS_TEMPLATE_TALK => true,
1863 NS_HELP_TALK => true,
1864 NS_CATEGORY_TALK => true
1867 $wgNamespacesToBeSearchedDefault = array(
1868 NS_MAIN => true,
1872 * Site notice shown at the top of each page
1874 * This message can contain wiki text, and can also be set through the
1875 * MediaWiki:Sitenotice page. You can also provide a separate message for
1876 * logged-out users using the MediaWiki:Anonnotice page.
1878 $wgSiteNotice = '';
1881 # Images settings
1885 * Plugins for media file type handling.
1886 * Each entry in the array maps a MIME type to a class name
1888 $wgMediaHandlers = array(
1889 'image/jpeg' => 'BitmapHandler',
1890 'image/png' => 'BitmapHandler',
1891 'image/gif' => 'BitmapHandler',
1892 'image/x-ms-bmp' => 'BmpHandler',
1893 'image/x-bmp' => 'BmpHandler',
1894 'image/svg+xml' => 'SvgHandler', // official
1895 'image/svg' => 'SvgHandler', // compat
1896 'image/vnd.djvu' => 'DjVuHandler', // official
1897 'image/x.djvu' => 'DjVuHandler', // compat
1898 'image/x-djvu' => 'DjVuHandler', // compat
1903 * Resizing can be done using PHP's internal image libraries or using
1904 * ImageMagick or another third-party converter, e.g. GraphicMagick.
1905 * These support more file formats than PHP, which only supports PNG,
1906 * GIF, JPG, XBM and WBMP.
1908 * Use Image Magick instead of PHP builtin functions.
1910 $wgUseImageMagick = false;
1911 /** The convert command shipped with ImageMagick */
1912 $wgImageMagickConvertCommand = '/usr/bin/convert';
1914 /** Sharpening parameter to ImageMagick */
1915 $wgSharpenParameter = '0x0.4';
1917 /** Reduction in linear dimensions below which sharpening will be enabled */
1918 $wgSharpenReductionThreshold = 0.85;
1921 * Use another resizing converter, e.g. GraphicMagick
1922 * %s will be replaced with the source path, %d with the destination
1923 * %w and %h will be replaced with the width and height
1925 * An example is provided for GraphicMagick
1926 * Leave as false to skip this
1928 #$wgCustomConvertCommand = "gm convert %s -resize %wx%h %d"
1929 $wgCustomConvertCommand = false;
1931 # Scalable Vector Graphics (SVG) may be uploaded as images.
1932 # Since SVG support is not yet standard in browsers, it is
1933 # necessary to rasterize SVGs to PNG as a fallback format.
1935 # An external program is required to perform this conversion:
1936 $wgSVGConverters = array(
1937 'ImageMagick' => '$path/convert -background white -geometry $width $input PNG:$output',
1938 'sodipodi' => '$path/sodipodi -z -w $width -f $input -e $output',
1939 'inkscape' => '$path/inkscape -z -w $width -f $input -e $output',
1940 'batik' => 'java -Djava.awt.headless=true -jar $path/batik-rasterizer.jar -w $width -d $output $input',
1941 'rsvg' => '$path/rsvg -w$width -h$height $input $output',
1942 'imgserv' => '$path/imgserv-wrapper -i svg -o png -w$width $input $output',
1944 /** Pick one of the above */
1945 $wgSVGConverter = 'ImageMagick';
1946 /** If not in the executable PATH, specify */
1947 $wgSVGConverterPath = '';
1948 /** Don't scale a SVG larger than this */
1949 $wgSVGMaxSize = 2048;
1951 * Don't thumbnail an image if it will use too much working memory
1952 * Default is 50 MB if decompressed to RGBA form, which corresponds to
1953 * 12.5 million pixels or 3500x3500
1955 $wgMaxImageArea = 1.25e7;
1957 * If rendered thumbnail files are older than this timestamp, they
1958 * will be rerendered on demand as if the file didn't already exist.
1959 * Update if there is some need to force thumbs and SVG rasterizations
1960 * to rerender, such as fixes to rendering bugs.
1962 $wgThumbnailEpoch = '20030516000000';
1965 * If set, inline scaled images will still produce <img> tags ready for
1966 * output instead of showing an error message.
1968 * This may be useful if errors are transitory, especially if the site
1969 * is configured to automatically render thumbnails on request.
1971 * On the other hand, it may obscure error conditions from debugging.
1972 * Enable the debug log or the 'thumbnail' log group to make sure errors
1973 * are logged to a file for review.
1975 $wgIgnoreImageErrors = false;
1978 * Allow thumbnail rendering on page view. If this is false, a valid
1979 * thumbnail URL is still output, but no file will be created at
1980 * the target location. This may save some time if you have a
1981 * thumb.php or 404 handler set up which is faster than the regular
1982 * webserver(s).
1984 $wgGenerateThumbnailOnParse = true;
1986 /** Obsolete, always true, kept for compatibility with extensions */
1987 $wgUseImageResize = true;
1990 /** Set $wgCommandLineMode if it's not set already, to avoid notices */
1991 if( !isset( $wgCommandLineMode ) ) {
1992 $wgCommandLineMode = false;
1995 /** For colorized maintenance script output, is your terminal background dark ? */
1996 $wgCommandLineDarkBg = false;
1999 # Recent changes settings
2002 /** Log IP addresses in the recentchanges table; can be accessed only by extensions (e.g. CheckUser) or a DB admin */
2003 $wgPutIPinRC = true;
2006 * Recentchanges items are periodically purged; entries older than this many
2007 * seconds will go.
2008 * For one week : 7 * 24 * 3600
2010 $wgRCMaxAge = 7 * 24 * 3600;
2013 * Filter $wgRCLinkDays by $wgRCMaxAge to avoid showing links for numbers higher than what will be stored.
2014 * Note that this is disabled by default because we sometimes do have RC data which is beyond the limit
2015 * for some reason, and some users may use the high numbers to display that data which is still there.
2017 $wgRCFilterByAge = false;
2020 * List of Days and Limits options to list in the Special:Recentchanges and Special:Recentchangeslinked pages.
2022 $wgRCLinkLimits = array( 50, 100, 250, 500 );
2023 $wgRCLinkDays = array( 1, 3, 7, 14, 30 );
2025 # Send RC updates via UDP
2026 $wgRC2UDPAddress = false;
2027 $wgRC2UDPPort = false;
2028 $wgRC2UDPPrefix = '';
2029 $wgRC2UDPOmitBots = false;
2032 * Enable user search in Special:Newpages
2033 * This is really a temporary hack around an index install bug on some Wikipedias.
2034 * Kill it once fixed.
2036 $wgEnableNewpagesUserFilter = true;
2039 * Whether to use metadata edition
2040 * This will put categories, language links and allowed templates in a separate text box
2041 * while editing pages
2042 * EXPERIMENTAL
2044 $wgUseMetadataEdit = false;
2045 /** Full name (including namespace) of the page containing templates names that will be allowed as metadata */
2046 $wgMetadataWhitelist = '';
2049 # Copyright and credits settings
2052 /** RDF metadata toggles */
2053 $wgEnableDublinCoreRdf = false;
2054 $wgEnableCreativeCommonsRdf = false;
2056 /** Override for copyright metadata.
2057 * TODO: these options need documentation
2059 $wgRightsPage = NULL;
2060 $wgRightsUrl = NULL;
2061 $wgRightsText = NULL;
2062 $wgRightsIcon = NULL;
2064 /** Set this to some HTML to override the rights icon with an arbitrary logo */
2065 $wgCopyrightIcon = NULL;
2067 /** Set this to true if you want detailed copyright information forms on Upload. */
2068 $wgUseCopyrightUpload = false;
2070 /** Set this to false if you want to disable checking that detailed copyright
2071 * information values are not empty. */
2072 $wgCheckCopyrightUpload = true;
2075 * Set this to the number of authors that you want to be credited below an
2076 * article text. Set it to zero to hide the attribution block, and a negative
2077 * number (like -1) to show all authors. Note that this will require 2-3 extra
2078 * database hits, which can have a not insignificant impact on performance for
2079 * large wikis.
2081 $wgMaxCredits = 0;
2083 /** If there are more than $wgMaxCredits authors, show $wgMaxCredits of them.
2084 * Otherwise, link to a separate credits page. */
2085 $wgShowCreditsIfMax = true;
2090 * Set this to false to avoid forcing the first letter of links to capitals.
2091 * WARNING: may break links! This makes links COMPLETELY case-sensitive. Links
2092 * appearing with a capital at the beginning of a sentence will *not* go to the
2093 * same place as links in the middle of a sentence using a lowercase initial.
2095 $wgCapitalLinks = true;
2098 * List of interwiki prefixes for wikis we'll accept as sources for
2099 * Special:Import (for sysops). Since complete page history can be imported,
2100 * these should be 'trusted'.
2102 * If a user has the 'import' permission but not the 'importupload' permission,
2103 * they will only be able to run imports through this transwiki interface.
2105 $wgImportSources = array();
2108 * Optional default target namespace for interwiki imports.
2109 * Can use this to create an incoming "transwiki"-style queue.
2110 * Set to numeric key, not the name.
2112 * Users may override this in the Special:Import dialog.
2114 $wgImportTargetNamespace = null;
2117 * If set to false, disables the full-history option on Special:Export.
2118 * This is currently poorly optimized for long edit histories, so is
2119 * disabled on Wikimedia's sites.
2121 $wgExportAllowHistory = true;
2124 * If set nonzero, Special:Export requests for history of pages with
2125 * more revisions than this will be rejected. On some big sites things
2126 * could get bogged down by very very long pages.
2128 $wgExportMaxHistory = 0;
2130 $wgExportAllowListContributors = false ;
2134 * Edits matching these regular expressions in body text or edit summary
2135 * will be recognised as spam and rejected automatically.
2137 * There's no administrator override on-wiki, so be careful what you set. :)
2138 * May be an array of regexes or a single string for backwards compatibility.
2140 * See http://en.wikipedia.org/wiki/Regular_expression
2142 $wgSpamRegex = array();
2144 /** Similarly you can get a function to do the job. The function will be given
2145 * the following args:
2146 * - a Title object for the article the edit is made on
2147 * - the text submitted in the textarea (wpTextbox1)
2148 * - the section number.
2149 * The return should be boolean indicating whether the edit matched some evilness:
2150 * - true : block it
2151 * - false : let it through
2153 * For a complete example, have a look at the SpamBlacklist extension.
2155 $wgFilterCallback = false;
2157 /** Go button goes straight to the edit screen if the article doesn't exist. */
2158 $wgGoToEdit = false;
2160 /** Allow raw, unchecked HTML in <html>...</html> sections.
2161 * THIS IS VERY DANGEROUS on a publically editable site, so USE wgGroupPermissions
2162 * TO RESTRICT EDITING to only those that you trust
2164 $wgRawHtml = false;
2167 * $wgUseTidy: use tidy to make sure HTML output is sane.
2168 * Tidy is a free tool that fixes broken HTML.
2169 * See http://www.w3.org/People/Raggett/tidy/
2170 * $wgTidyBin should be set to the path of the binary and
2171 * $wgTidyConf to the path of the configuration file.
2172 * $wgTidyOpts can include any number of parameters.
2174 * $wgTidyInternal controls the use of the PECL extension to use an in-
2175 * process tidy library instead of spawning a separate program.
2176 * Normally you shouldn't need to override the setting except for
2177 * debugging. To install, use 'pear install tidy' and add a line
2178 * 'extension=tidy.so' to php.ini.
2180 $wgUseTidy = false;
2181 $wgAlwaysUseTidy = false;
2182 $wgTidyBin = 'tidy';
2183 $wgTidyConf = $IP.'/includes/tidy.conf';
2184 $wgTidyOpts = '';
2185 $wgTidyInternal = extension_loaded( 'tidy' );
2188 * Put tidy warnings in HTML comments
2189 * Only works for internal tidy.
2191 $wgDebugTidy = false;
2194 * Validate the overall output using tidy and refuse
2195 * to display the page if it's not valid.
2197 $wgValidateAllHtml = false;
2199 /** See list of skins and their symbolic names in languages/Language.php */
2200 $wgDefaultSkin = 'monobook';
2203 * Optionally, we can specify a stylesheet to use for media="handheld".
2204 * This is recognized by some, but not all, handheld/mobile/PDA browsers.
2205 * If left empty, compliant handheld browsers won't pick up the skin
2206 * stylesheet, which is specified for 'screen' media.
2208 * Can be a complete URL, base-relative path, or $wgStylePath-relative path.
2209 * Try 'chick/main.css' to apply the Chick styles to the MonoBook HTML.
2211 * Will also be switched in when 'handheld=yes' is added to the URL, like
2212 * the 'printable=yes' mode for print media.
2214 $wgHandheldStyle = false;
2217 * If set, 'screen' and 'handheld' media specifiers for stylesheets are
2218 * transformed such that they apply to the iPhone/iPod Touch Mobile Safari,
2219 * which doesn't recognize 'handheld' but does support media queries on its
2220 * screen size.
2222 * Consider only using this if you have a *really good* handheld stylesheet,
2223 * as iPhone users won't have any way to disable it and use the "grown-up"
2224 * styles instead.
2226 $wgHandheldForIPhone = false;
2229 * Settings added to this array will override the default globals for the user
2230 * preferences used by anonymous visitors and newly created accounts.
2231 * For instance, to disable section editing links:
2232 * $wgDefaultUserOptions ['editsection'] = 0;
2235 $wgDefaultUserOptions = array(
2236 'quickbar' => 1,
2237 'underline' => 2,
2238 'cols' => 80,
2239 'rows' => 25,
2240 'searchlimit' => 20,
2241 'contextlines' => 5,
2242 'contextchars' => 50,
2243 'disablesuggest' => 0,
2244 'skin' => false,
2245 'math' => 1,
2246 'usenewrc' => 0,
2247 'rcdays' => 7,
2248 'rclimit' => 50,
2249 'wllimit' => 250,
2250 'hideminor' => 0,
2251 'highlightbroken' => 1,
2252 'stubthreshold' => 0,
2253 'previewontop' => 1,
2254 'previewonfirst' => 0,
2255 'editsection' => 1,
2256 'editsectiononrightclick' => 0,
2257 'editondblclick' => 0,
2258 'editwidth' => 0,
2259 'showtoc' => 1,
2260 'showtoolbar' => 1,
2261 'minordefault' => 0,
2262 'date' => 'default',
2263 'imagesize' => 2,
2264 'thumbsize' => 2,
2265 'rememberpassword' => 0,
2266 'enotifwatchlistpages' => 0,
2267 'enotifusertalkpages' => 1,
2268 'enotifminoredits' => 0,
2269 'enotifrevealaddr' => 0,
2270 'shownumberswatching' => 1,
2271 'fancysig' => 0,
2272 'externaleditor' => 0,
2273 'externaldiff' => 0,
2274 'showjumplinks' => 1,
2275 'numberheadings' => 0,
2276 'uselivepreview' => 0,
2277 'watchlistdays' => 3.0,
2278 'extendwatchlist' => 0,
2279 'watchlisthideminor' => 0,
2280 'watchlisthidebots' => 0,
2281 'watchlisthideown' => 0,
2282 'watchcreations' => 0,
2283 'watchdefault' => 0,
2284 'watchmoves' => 0,
2285 'watchdeletion' => 0,
2286 'noconvertlink' => 0,
2289 /** Whether or not to allow and use real name fields. Defaults to true. */
2290 $wgAllowRealName = true;
2292 /*****************************************************************************
2293 * Extensions
2297 * A list of callback functions which are called once MediaWiki is fully initialised
2299 $wgExtensionFunctions = array();
2302 * Extension functions for initialisation of skins. This is called somewhat earlier
2303 * than $wgExtensionFunctions.
2305 $wgSkinExtensionFunctions = array();
2308 * Extension messages files
2309 * Associative array mapping extension name to the filename where messages can be found.
2310 * The file must create a variable called $messages.
2311 * When the messages are needed, the extension should call wfLoadExtensionMessages().
2313 * Example:
2314 * $wgExtensionMessagesFiles['ConfirmEdit'] = dirname(__FILE__).'/ConfirmEdit.i18n.php';
2317 $wgExtensionMessagesFiles = array();
2320 * Aliases for special pages provided by extensions.
2321 * Associative array mapping special page to array of aliases. First alternative
2322 * for each special page will be used as the normalised name for it. English
2323 * aliases will be added to the end of the list so that they always work. The
2324 * file must define a variable $aliases.
2326 * Example:
2327 * $wgExtensionAliasesFiles['Translate'] = dirname(__FILE__).'/Translate.alias.php';
2329 $wgExtensionAliasesFiles = array();
2332 * Parser output hooks.
2333 * This is an associative array where the key is an extension-defined tag
2334 * (typically the extension name), and the value is a PHP callback.
2335 * These will be called as an OutputPageParserOutput hook, if the relevant
2336 * tag has been registered with the parser output object.
2338 * Registration is done with $pout->addOutputHook( $tag, $data ).
2340 * The callback has the form:
2341 * function outputHook( $outputPage, $parserOutput, $data ) { ... }
2343 $wgParserOutputHooks = array();
2346 * List of valid skin names.
2347 * The key should be the name in all lower case, the value should be a display name.
2348 * The default skins will be added later, by Skin::getSkinNames(). Use
2349 * Skin::getSkinNames() as an accessor if you wish to have access to the full list.
2351 $wgValidSkinNames = array();
2354 * Special page list.
2355 * See the top of SpecialPage.php for documentation.
2357 $wgSpecialPages = array();
2360 * Array mapping class names to filenames, for autoloading.
2362 $wgAutoloadClasses = array();
2365 * An array of extension types and inside that their names, versions, authors,
2366 * urls, descriptions and pointers to localized description msgs. Note that
2367 * the version, url, description and descriptionmsg key can be omitted.
2369 * <code>
2370 * $wgExtensionCredits[$type][] = array(
2371 * 'name' => 'Example extension',
2372 * 'version' => 1.9,
2373 * 'svn-revision' => '$LastChangedRevision$',
2374 * 'author' => 'Foo Barstein',
2375 * 'url' => 'http://wwww.example.com/Example%20Extension/',
2376 * 'description' => 'An example extension',
2377 * 'descriptionmsg' => 'exampleextension-desc',
2378 * );
2379 * </code>
2381 * Where $type is 'specialpage', 'parserhook', 'variable', 'media' or 'other'.
2383 $wgExtensionCredits = array();
2385 * end extensions
2386 ******************************************************************************/
2389 * Allow user Javascript page?
2390 * This enables a lot of neat customizations, but may
2391 * increase security risk to users and server load.
2393 $wgAllowUserJs = false;
2396 * Allow user Cascading Style Sheets (CSS)?
2397 * This enables a lot of neat customizations, but may
2398 * increase security risk to users and server load.
2400 $wgAllowUserCss = false;
2402 /** Use the site's Javascript page? */
2403 $wgUseSiteJs = true;
2405 /** Use the site's Cascading Style Sheets (CSS)? */
2406 $wgUseSiteCss = true;
2408 /** Filter for Special:Randompage. Part of a WHERE clause */
2409 $wgExtraRandompageSQL = false;
2411 /** Allow the "info" action, very inefficient at the moment */
2412 $wgAllowPageInfo = false;
2414 /** Maximum indent level of toc. */
2415 $wgMaxTocLevel = 999;
2417 /** Name of the external diff engine to use */
2418 $wgExternalDiffEngine = false;
2420 /** Whether to use inline diff */
2421 $wgEnableHtmlDiff = false;
2423 /** Use RC Patrolling to check for vandalism */
2424 $wgUseRCPatrol = true;
2426 /** Use new page patrolling to check new pages on Special:Newpages */
2427 $wgUseNPPatrol = true;
2429 /** Provide syndication feeds (RSS, Atom) for, e.g., Recentchanges, Newpages */
2430 $wgFeed = true;
2432 /** Set maximum number of results to return in syndication feeds (RSS, Atom) for
2433 * eg Recentchanges, Newpages. */
2434 $wgFeedLimit = 50;
2436 /** _Minimum_ timeout for cached Recentchanges feed, in seconds.
2437 * A cached version will continue to be served out even if changes
2438 * are made, until this many seconds runs out since the last render.
2440 * If set to 0, feed caching is disabled. Use this for debugging only;
2441 * feed generation can be pretty slow with diffs.
2443 $wgFeedCacheTimeout = 60;
2445 /** When generating Recentchanges RSS/Atom feed, diffs will not be generated for
2446 * pages larger than this size. */
2447 $wgFeedDiffCutoff = 32768;
2449 /** Override the site's default RSS/ATOM feed for recentchanges that appears on
2450 * every page. Some sites might have a different feed they'd like to promote
2451 * instead of the RC feed (maybe like a "Recent New Articles" or "Breaking news" one).
2452 * Ex: $wgSiteFeed['format'] = "http://example.com/somefeed.xml"; Format can be one
2453 * of either 'rss' or 'atom'.
2455 $wgOverrideSiteFeed = array();
2458 * Additional namespaces. If the namespaces defined in Language.php and
2459 * Namespace.php are insufficient, you can create new ones here, for example,
2460 * to import Help files in other languages.
2461 * PLEASE NOTE: Once you delete a namespace, the pages in that namespace will
2462 * no longer be accessible. If you rename it, then you can access them through
2463 * the new namespace name.
2465 * Custom namespaces should start at 100 to avoid conflicting with standard
2466 * namespaces, and should always follow the even/odd main/talk pattern.
2468 #$wgExtraNamespaces =
2469 # array(100 => "Hilfe",
2470 # 101 => "Hilfe_Diskussion",
2471 # 102 => "Aide",
2472 # 103 => "Discussion_Aide"
2473 # );
2474 $wgExtraNamespaces = NULL;
2477 * Namespace aliases
2478 * These are alternate names for the primary localised namespace names, which
2479 * are defined by $wgExtraNamespaces and the language file. If a page is
2480 * requested with such a prefix, the request will be redirected to the primary
2481 * name.
2483 * Set this to a map from namespace names to IDs.
2484 * Example:
2485 * $wgNamespaceAliases = array(
2486 * 'Wikipedian' => NS_USER,
2487 * 'Help' => 100,
2488 * );
2490 $wgNamespaceAliases = array();
2493 * Limit images on image description pages to a user-selectable limit. In order
2494 * to reduce disk usage, limits can only be selected from a list.
2495 * The user preference is saved as an array offset in the database, by default
2496 * the offset is set with $wgDefaultUserOptions['imagesize']. Make sure you
2497 * change it if you alter the array (see bug 8858).
2498 * This is the list of settings the user can choose from:
2500 $wgImageLimits = array (
2501 array(320,240),
2502 array(640,480),
2503 array(800,600),
2504 array(1024,768),
2505 array(1280,1024),
2506 array(10000,10000) );
2509 * Adjust thumbnails on image pages according to a user setting. In order to
2510 * reduce disk usage, the values can only be selected from a list. This is the
2511 * list of settings the user can choose from:
2513 $wgThumbLimits = array(
2514 120,
2515 150,
2516 180,
2517 200,
2518 250,
2523 * Adjust width of upright images when parameter 'upright' is used
2524 * This allows a nicer look for upright images without the need to fix the width
2525 * by hardcoded px in wiki sourcecode.
2527 $wgThumbUpright = 0.75;
2530 * On category pages, show thumbnail gallery for images belonging to that
2531 * category instead of listing them as articles.
2533 $wgCategoryMagicGallery = true;
2536 * Paging limit for categories
2538 $wgCategoryPagingLimit = 200;
2541 * Should the default category sortkey be the prefixed title?
2542 * Run maintenance/refreshLinks.php after changing this.
2544 $wgCategoryPrefixedDefaultSortkey = true;
2547 * Browser Blacklist for unicode non compliant browsers
2548 * Contains a list of regexps : "/regexp/" matching problematic browsers
2550 $wgBrowserBlackList = array(
2552 * Netscape 2-4 detection
2553 * The minor version may contain strings such as "Gold" or "SGoldC-SGI"
2554 * Lots of non-netscape user agents have "compatible", so it's useful to check for that
2555 * with a negative assertion. The [UIN] identifier specifies the level of security
2556 * in a Netscape/Mozilla browser, checking for it rules out a number of fakers.
2557 * The language string is unreliable, it is missing on NS4 Mac.
2559 * Reference: http://www.psychedelix.com/agents/index.shtml
2561 '/^Mozilla\/2\.[^ ]+ [^(]*?\((?!compatible).*; [UIN]/',
2562 '/^Mozilla\/3\.[^ ]+ [^(]*?\((?!compatible).*; [UIN]/',
2563 '/^Mozilla\/4\.[^ ]+ [^(]*?\((?!compatible).*; [UIN]/',
2566 * MSIE on Mac OS 9 is teh sux0r, converts þ to <thorn>, ð to <eth>, Þ to <THORN> and Ð to <ETH>
2568 * Known useragents:
2569 * - Mozilla/4.0 (compatible; MSIE 5.0; Mac_PowerPC)
2570 * - Mozilla/4.0 (compatible; MSIE 5.15; Mac_PowerPC)
2571 * - Mozilla/4.0 (compatible; MSIE 5.23; Mac_PowerPC)
2572 * - [...]
2574 * @link http://en.wikipedia.org/w/index.php?title=User%3A%C6var_Arnfj%F6r%F0_Bjarmason%2Ftestme&diff=12356041&oldid=12355864
2575 * @link http://en.wikipedia.org/wiki/Template%3AOS9
2577 '/^Mozilla\/4\.0 \(compatible; MSIE \d+\.\d+; Mac_PowerPC\)/',
2580 * Google wireless transcoder, seems to eat a lot of chars alive
2581 * http://it.wikipedia.org/w/index.php?title=Luciano_Ligabue&diff=prev&oldid=8857361
2583 '/^Mozilla\/4\.0 \(compatible; MSIE 6.0; Windows NT 5.0; Google Wireless Transcoder;\)/'
2587 * Fake out the timezone that the server thinks it's in. This will be used for
2588 * date display and not for what's stored in the DB. Leave to null to retain
2589 * your server's OS-based timezone value. This is the same as the timezone.
2591 * This variable is currently used ONLY for signature formatting, not for
2592 * anything else.
2594 # $wgLocaltimezone = 'GMT';
2595 # $wgLocaltimezone = 'PST8PDT';
2596 # $wgLocaltimezone = 'Europe/Sweden';
2597 # $wgLocaltimezone = 'CET';
2598 $wgLocaltimezone = null;
2601 * Set an offset from UTC in minutes to use for the default timezone setting
2602 * for anonymous users and new user accounts.
2604 * This setting is used for most date/time displays in the software, and is
2605 * overrideable in user preferences. It is *not* used for signature timestamps.
2607 * You can set it to match the configured server timezone like this:
2608 * $wgLocalTZoffset = date("Z") / 60;
2610 * If your server is not configured for the timezone you want, you can set
2611 * this in conjunction with the signature timezone and override the TZ
2612 * environment variable like so:
2613 * $wgLocaltimezone="Europe/Berlin";
2614 * putenv("TZ=$wgLocaltimezone");
2615 * $wgLocalTZoffset = date("Z") / 60;
2617 * Leave at NULL to show times in universal time (UTC/GMT).
2619 $wgLocalTZoffset = null;
2623 * When translating messages with wfMsg(), it is not always clear what should be
2624 * considered UI messages and what shoud be content messages.
2626 * For example, for regular wikipedia site like en, there should be only one
2627 * 'mainpage', therefore when getting the link of 'mainpage', we should treate
2628 * it as content of the site and call wfMsgForContent(), while for rendering the
2629 * text of the link, we call wfMsg(). The code in default behaves this way.
2630 * However, sites like common do offer different versions of 'mainpage' and the
2631 * like for different languages. This array provides a way to override the
2632 * default behavior. For example, to allow language specific mainpage and
2633 * community portal, set
2635 * $wgForceUIMsgAsContentMsg = array( 'mainpage', 'portal-url' );
2637 $wgForceUIMsgAsContentMsg = array();
2641 * Authentication plugin.
2643 $wgAuth = null;
2646 * Global list of hooks.
2647 * Add a hook by doing:
2648 * $wgHooks['event_name'][] = $function;
2649 * or:
2650 * $wgHooks['event_name'][] = array($function, $data);
2651 * or:
2652 * $wgHooks['event_name'][] = array($object, 'method');
2654 $wgHooks = array();
2657 * The logging system has two levels: an event type, which describes the
2658 * general category and can be viewed as a named subset of all logs; and
2659 * an action, which is a specific kind of event that can exist in that
2660 * log type.
2662 $wgLogTypes = array( '',
2663 'block',
2664 'protect',
2665 'rights',
2666 'delete',
2667 'upload',
2668 'move',
2669 'import',
2670 'patrol',
2671 'merge',
2672 'suppress',
2676 * This restricts log access to those who have a certain right
2677 * Users without this will not see it in the option menu and can not view it
2678 * Restricted logs are not added to recent changes
2679 * Logs should remain non-transcludable
2681 $wgLogRestrictions = array(
2682 'suppress' => 'suppressionlog'
2686 * Lists the message key string for each log type. The localized messages
2687 * will be listed in the user interface.
2689 * Extensions with custom log types may add to this array.
2691 $wgLogNames = array(
2692 '' => 'all-logs-page',
2693 'block' => 'blocklogpage',
2694 'protect' => 'protectlogpage',
2695 'rights' => 'rightslog',
2696 'delete' => 'dellogpage',
2697 'upload' => 'uploadlogpage',
2698 'move' => 'movelogpage',
2699 'import' => 'importlogpage',
2700 'patrol' => 'patrol-log-page',
2701 'merge' => 'mergelog',
2702 'suppress' => 'suppressionlog',
2706 * Lists the message key string for descriptive text to be shown at the
2707 * top of each log type.
2709 * Extensions with custom log types may add to this array.
2711 $wgLogHeaders = array(
2712 '' => 'alllogstext',
2713 'block' => 'blocklogtext',
2714 'protect' => 'protectlogtext',
2715 'rights' => 'rightslogtext',
2716 'delete' => 'dellogpagetext',
2717 'upload' => 'uploadlogpagetext',
2718 'move' => 'movelogpagetext',
2719 'import' => 'importlogpagetext',
2720 'patrol' => 'patrol-log-header',
2721 'merge' => 'mergelogpagetext',
2722 'suppress' => 'suppressionlogtext',
2726 * Lists the message key string for formatting individual events of each
2727 * type and action when listed in the logs.
2729 * Extensions with custom log types may add to this array.
2731 $wgLogActions = array(
2732 'block/block' => 'blocklogentry',
2733 'block/unblock' => 'unblocklogentry',
2734 'protect/protect' => 'protectedarticle',
2735 'protect/modify' => 'modifiedarticleprotection',
2736 'protect/unprotect' => 'unprotectedarticle',
2737 'protect/move_prot' => 'movedarticleprotection',
2738 'rights/rights' => 'rightslogentry',
2739 'delete/delete' => 'deletedarticle',
2740 'delete/restore' => 'undeletedarticle',
2741 'delete/revision' => 'revdelete-logentry',
2742 'delete/event' => 'logdelete-logentry',
2743 'upload/upload' => 'uploadedimage',
2744 'upload/overwrite' => 'overwroteimage',
2745 'upload/revert' => 'uploadedimage',
2746 'move/move' => '1movedto2',
2747 'move/move_redir' => '1movedto2_redir',
2748 'import/upload' => 'import-logentry-upload',
2749 'import/interwiki' => 'import-logentry-interwiki',
2750 'merge/merge' => 'pagemerge-logentry',
2751 'suppress/revision' => 'revdelete-logentry',
2752 'suppress/file' => 'revdelete-logentry',
2753 'suppress/event' => 'logdelete-logentry',
2754 'suppress/delete' => 'suppressedarticle',
2755 'suppress/block' => 'blocklogentry',
2759 * The same as above, but here values are names of functions,
2760 * not messages
2762 $wgLogActionsHandlers = array();
2765 * Maintain a log of newusers at Log/newusers?
2767 $wgNewUserLog = true;
2770 * List of special pages, followed by what subtitle they should go under
2771 * at Special:SpecialPages
2773 $wgSpecialPageGroups = array(
2774 'DoubleRedirects' => 'maintenance',
2775 'BrokenRedirects' => 'maintenance',
2776 'Lonelypages' => 'maintenance',
2777 'Uncategorizedpages' => 'maintenance',
2778 'Uncategorizedcategories' => 'maintenance',
2779 'Uncategorizedimages' => 'maintenance',
2780 'Uncategorizedtemplates' => 'maintenance',
2781 'Unusedcategories' => 'maintenance',
2782 'Unusedimages' => 'maintenance',
2783 'Protectedpages' => 'maintenance',
2784 'Protectedtitles' => 'maintenance',
2785 'Unusedtemplates' => 'maintenance',
2786 'Withoutinterwiki' => 'maintenance',
2787 'Longpages' => 'maintenance',
2788 'Shortpages' => 'maintenance',
2789 'Ancientpages' => 'maintenance',
2790 'Deadendpages' => 'maintenance',
2791 'Wantedpages' => 'maintenance',
2792 'Wantedcategories' => 'maintenance',
2793 'Wantedfiles' => 'maintenance',
2794 'Unwatchedpages' => 'maintenance',
2795 'Fewestrevisions' => 'maintenance',
2797 'Userlogin' => 'login',
2798 'Userlogout' => 'login',
2799 'CreateAccount' => 'login',
2801 'Recentchanges' => 'changes',
2802 'Recentchangeslinked' => 'changes',
2803 'Watchlist' => 'changes',
2804 'Newimages' => 'changes',
2805 'Newpages' => 'changes',
2806 'Log' => 'changes',
2808 'Upload' => 'media',
2809 'Imagelist' => 'media',
2810 'MIMEsearch' => 'media',
2811 'FileDuplicateSearch' => 'media',
2812 'Filepath' => 'media',
2814 'Listusers' => 'users',
2815 'Listgrouprights' => 'users',
2816 'Ipblocklist' => 'users',
2817 'Contributions' => 'users',
2818 'Emailuser' => 'users',
2819 'Listadmins' => 'users',
2820 'Listbots' => 'users',
2821 'Userrights' => 'users',
2822 'Blockip' => 'users',
2823 'Preferences' => 'users',
2824 'Resetpass' => 'users',
2825 'DeletedContributions' => 'users',
2827 'Mostlinked' => 'highuse',
2828 'Mostlinkedcategories' => 'highuse',
2829 'Mostlinkedtemplates' => 'highuse',
2830 'Mostcategories' => 'highuse',
2831 'Mostimages' => 'highuse',
2832 'Mostrevisions' => 'highuse',
2834 'Allpages' => 'pages',
2835 'Prefixindex' => 'pages',
2836 'Listredirects' => 'pages',
2837 'Categories' => 'pages',
2838 'Disambiguations' => 'pages',
2840 'Randompage' => 'redirects',
2841 'Randomredirect' => 'redirects',
2842 'Mypage' => 'redirects',
2843 'Mytalk' => 'redirects',
2844 'Mycontributions' => 'redirects',
2845 'Search' => 'redirects',
2846 'LinkSearch' => 'redirects',
2848 'Movepage' => 'pagetools',
2849 'MergeHistory' => 'pagetools',
2850 'Revisiondelete' => 'pagetools',
2851 'Undelete' => 'pagetools',
2852 'Export' => 'pagetools',
2853 'Import' => 'pagetools',
2854 'Whatlinkshere' => 'pagetools',
2855 'Nuke' => 'pagetools',
2857 'Statistics' => 'wiki',
2858 'Version' => 'wiki',
2859 'Lockdb' => 'wiki',
2860 'Unlockdb' => 'wiki',
2861 'Allmessages' => 'wiki',
2862 'Popularpages' => 'wiki',
2864 'Specialpages' => 'other',
2865 'Blockme' => 'other',
2866 'Booksources' => 'other',
2870 * Experimental preview feature to fetch rendered text
2871 * over an XMLHttpRequest from JavaScript instead of
2872 * forcing a submit and reload of the whole page.
2873 * Leave disabled unless you're testing it.
2875 $wgLivePreview = false;
2878 * Disable the internal MySQL-based search, to allow it to be
2879 * implemented by an extension instead.
2881 $wgDisableInternalSearch = false;
2884 * Set this to a URL to forward search requests to some external location.
2885 * If the URL includes '$1', this will be replaced with the URL-encoded
2886 * search term.
2888 * For example, to forward to Google you'd have something like:
2889 * $wgSearchForwardUrl = 'http://www.google.com/search?q=$1' .
2890 * '&domains=http://example.com' .
2891 * '&sitesearch=http://example.com' .
2892 * '&ie=utf-8&oe=utf-8';
2894 $wgSearchForwardUrl = null;
2897 * Set a default target for external links, e.g. _blank to pop up a new window
2899 $wgExternalLinkTarget = false;
2902 * If true, external URL links in wiki text will be given the
2903 * rel="nofollow" attribute as a hint to search engines that
2904 * they should not be followed for ranking purposes as they
2905 * are user-supplied and thus subject to spamming.
2907 $wgNoFollowLinks = true;
2910 * Namespaces in which $wgNoFollowLinks doesn't apply.
2911 * See Language.php for a list of namespaces.
2913 $wgNoFollowNsExceptions = array();
2916 * Default robot policy. The default policy is to encourage indexing and fol-
2917 * lowing of links. It may be overridden on a per-namespace and/or per-page
2918 * basis.
2920 $wgDefaultRobotPolicy = 'index,follow';
2923 * Robot policies per namespaces. The default policy is given above, the array
2924 * is made of namespace constants as defined in includes/Defines.php. You can-
2925 * not specify a different default policy for NS_SPECIAL: it is always noindex,
2926 * nofollow. This is because a number of special pages (e.g., ListPages) have
2927 * many permutations of options that display the same data under redundant
2928 * URLs, so search engine spiders risk getting lost in a maze of twisty special
2929 * pages, all alike, and never reaching your actual content.
2931 * Example:
2932 * $wgNamespaceRobotPolicies = array( NS_TALK => 'noindex' );
2934 $wgNamespaceRobotPolicies = array();
2937 * Robot policies per article. These override the per-namespace robot policies.
2938 * Must be in the form of an array where the key part is a properly canonical-
2939 * ised text form title and the value is a robot policy.
2940 * Example:
2941 * $wgArticleRobotPolicies = array( 'Main Page' => 'noindex,follow',
2942 * 'User:Bob' => 'index,follow' );
2943 * Example that DOES NOT WORK because the names are not canonical text forms:
2944 * $wgArticleRobotPolicies = array(
2945 * # Underscore, not space!
2946 * 'Main_Page' => 'noindex,follow',
2947 * # "Project", not the actual project name!
2948 * 'Project:X' => 'index,follow',
2949 * # Needs to be "Abc", not "abc" (unless $wgCapitalLinks is false)!
2950 * 'abc' => 'noindex,nofollow'
2951 * );
2953 $wgArticleRobotPolicies = array();
2956 * An array of namespace keys in which the __INDEX__/__NOINDEX__ magic words
2957 * will not function, so users can't decide whether pages in that namespace are
2958 * indexed by search engines. If set to null, default to $wgContentNamespaces.
2959 * Example:
2960 * $wgExemptFromUserRobotsControl = array( NS_MAIN, NS_TALK, NS_PROJECT );
2962 $wgExemptFromUserRobotsControl = null;
2965 * Specifies the minimal length of a user password. If set to 0, empty pass-
2966 * words are allowed.
2968 $wgMinimalPasswordLength = 0;
2971 * Activate external editor interface for files and pages
2972 * See http://meta.wikimedia.org/wiki/Help:External_editors
2974 $wgUseExternalEditor = true;
2976 /** Whether or not to sort special pages in Special:Specialpages */
2978 $wgSortSpecialPages = true;
2981 * Specify the name of a skin that should not be presented in the list of a-
2982 * vailable skins. Use for blacklisting a skin which you do not want to remove
2983 * from the .../skins/ directory
2985 $wgSkipSkin = '';
2986 $wgSkipSkins = array(); # More of the same
2989 * Array of disabled article actions, e.g. view, edit, dublincore, delete, etc.
2991 $wgDisabledActions = array();
2994 * Disable redirects to special pages and interwiki redirects, which use a 302
2995 * and have no "redirected from" link.
2997 $wgDisableHardRedirects = false;
3000 * Use http.dnsbl.sorbs.net to check for open proxies
3002 $wgEnableSorbs = false;
3003 $wgSorbsUrl = 'http.dnsbl.sorbs.net.';
3006 * Proxy whitelist, list of addresses that are assumed to be non-proxy despite
3007 * what the other methods might say.
3009 $wgProxyWhitelist = array();
3012 * Simple rate limiter options to brake edit floods. Maximum number actions
3013 * allowed in the given number of seconds; after that the violating client re-
3014 * ceives HTTP 500 error pages until the period elapses.
3016 * array( 4, 60 ) for a maximum of 4 hits in 60 seconds.
3018 * This option set is experimental and likely to change. Requires memcached.
3020 $wgRateLimits = array(
3021 'edit' => array(
3022 'anon' => null, // for any and all anonymous edits (aggregate)
3023 'user' => null, // for each logged-in user
3024 'newbie' => null, // for each recent (autoconfirmed) account; overrides 'user'
3025 'ip' => null, // for each anon and recent account
3026 'subnet' => null, // ... with final octet removed
3028 'move' => array(
3029 'user' => null,
3030 'newbie' => null,
3031 'ip' => null,
3032 'subnet' => null,
3034 'mailpassword' => array(
3035 'anon' => NULL,
3037 'emailuser' => array(
3038 'user' => null,
3043 * Set to a filename to log rate limiter hits.
3045 $wgRateLimitLog = null;
3048 * Array of groups which should never trigger the rate limiter
3050 * @deprecated as of 1.13.0, the preferred method is using
3051 * $wgGroupPermissions[]['noratelimit']. However, this will still
3052 * work if desired.
3054 * $wgRateLimitsExcludedGroups = array( 'sysop', 'bureaucrat' );
3056 $wgRateLimitsExcludedGroups = array();
3059 * On Special:Unusedimages, consider images "used", if they are put
3060 * into a category. Default (false) is not to count those as used.
3062 $wgCountCategorizedImagesAsUsed = false;
3065 * External stores allow including content
3066 * from non database sources following URL links
3068 * Short names of ExternalStore classes may be specified in an array here:
3069 * $wgExternalStores = array("http","file","custom")...
3071 * CAUTION: Access to database might lead to code execution
3073 $wgExternalStores = false;
3076 * An array of external mysql servers, e.g.
3077 * $wgExternalServers = array( 'cluster1' => array( 'srv28', 'srv29', 'srv30' ) );
3078 * Used by LBFactory_Simple, may be ignored if $wgLBFactoryConf is set to another class.
3080 $wgExternalServers = array();
3083 * The place to put new revisions, false to put them in the local text table.
3084 * Part of a URL, e.g. DB://cluster1
3086 * Can be an array instead of a single string, to enable data distribution. Keys
3087 * must be consecutive integers, starting at zero. Example:
3089 * $wgDefaultExternalStore = array( 'DB://cluster1', 'DB://cluster2' );
3092 $wgDefaultExternalStore = false;
3095 * Revision text may be cached in $wgMemc to reduce load on external storage
3096 * servers and object extraction overhead for frequently-loaded revisions.
3098 * Set to 0 to disable, or number of seconds before cache expiry.
3100 $wgRevisionCacheExpiry = 0;
3103 * list of trusted media-types and mime types.
3104 * Use the MEDIATYPE_xxx constants to represent media types.
3105 * This list is used by Image::isSafeFile
3107 * Types not listed here will have a warning about unsafe content
3108 * displayed on the images description page. It would also be possible
3109 * to use this for further restrictions, like disabling direct
3110 * [[media:...]] links for non-trusted formats.
3112 $wgTrustedMediaFormats= array(
3113 MEDIATYPE_BITMAP, //all bitmap formats
3114 MEDIATYPE_AUDIO, //all audio formats
3115 MEDIATYPE_VIDEO, //all plain video formats
3116 "image/svg+xml", //svg (only needed if inline rendering of svg is not supported)
3117 "application/pdf", //PDF files
3118 #"application/x-shockwave-flash", //flash/shockwave movie
3122 * Allow special page inclusions such as {{Special:Allpages}}
3124 $wgAllowSpecialInclusion = true;
3127 * Timeout for HTTP requests done via CURL
3129 $wgHTTPTimeout = 3;
3132 * Proxy to use for CURL requests.
3134 $wgHTTPProxy = false;
3137 * Enable interwiki transcluding. Only when iw_trans=1.
3139 $wgEnableScaryTranscluding = false;
3141 * Expiry time for interwiki transclusion
3143 $wgTranscludeCacheExpiry = 3600;
3146 * Support blog-style "trackbacks" for articles. See
3147 * http://www.sixapart.com/pronet/docs/trackback_spec for details.
3149 $wgUseTrackbacks = false;
3152 * Enable filtering of categories in Recentchanges
3154 $wgAllowCategorizedRecentChanges = false ;
3157 * Number of jobs to perform per request. May be less than one in which case
3158 * jobs are performed probabalistically. If this is zero, jobs will not be done
3159 * during ordinary apache requests. In this case, maintenance/runJobs.php should
3160 * be run periodically.
3162 $wgJobRunRate = 1;
3165 * Number of rows to update per job
3167 $wgUpdateRowsPerJob = 500;
3170 * Number of rows to update per query
3172 $wgUpdateRowsPerQuery = 10;
3175 * Enable AJAX framework
3177 $wgUseAjax = true;
3180 * List of Ajax-callable functions.
3181 * Extensions acting as Ajax callbacks must register here
3183 $wgAjaxExportList = array( );
3186 * Enable watching/unwatching pages using AJAX.
3187 * Requires $wgUseAjax to be true too.
3188 * Causes wfAjaxWatch to be added to $wgAjaxExportList
3190 $wgAjaxWatch = true;
3193 * Enable AJAX check for file overwrite, pre-upload
3195 $wgAjaxUploadDestCheck = true;
3198 * Enable previewing licences via AJAX
3200 $wgAjaxLicensePreview = true;
3203 * Allow DISPLAYTITLE to change title display
3205 $wgAllowDisplayTitle = true;
3208 * for consistency, restrict DISPLAYTITLE to titles that normalize to the same canonical DB key
3210 $wgRestrictDisplayTitle = true;
3213 * Array of usernames which may not be registered or logged in from
3214 * Maintenance scripts can still use these
3216 $wgReservedUsernames = array(
3217 'MediaWiki default', // Default 'Main Page' and MediaWiki: message pages
3218 'Conversion script', // Used for the old Wikipedia software upgrade
3219 'Maintenance script', // Maintenance scripts which perform editing, image import script
3220 'Template namespace initialisation script', // Used in 1.2->1.3 upgrade
3221 'msg:double-redirect-fixer', // Automatic double redirect fix
3225 * MediaWiki will reject HTMLesque tags in uploaded files due to idiotic browsers which can't
3226 * perform basic stuff like MIME detection and which are vulnerable to further idiots uploading
3227 * crap files as images. When this directive is on, <title> will be allowed in files with
3228 * an "image/svg+xml" MIME type. You should leave this disabled if your web server is misconfigured
3229 * and doesn't send appropriate MIME types for SVG images.
3231 $wgAllowTitlesInSVG = false;
3234 * Array of namespaces which can be deemed to contain valid "content", as far
3235 * as the site statistics are concerned. Useful if additional namespaces also
3236 * contain "content" which should be considered when generating a count of the
3237 * number of articles in the wiki.
3239 $wgContentNamespaces = array( NS_MAIN );
3242 * Maximum amount of virtual memory available to shell processes under linux, in KB.
3244 $wgMaxShellMemory = 102400;
3247 * Maximum file size created by shell processes under linux, in KB
3248 * ImageMagick convert for example can be fairly hungry for scratch space
3250 $wgMaxShellFileSize = 102400;
3253 * Executable name of PHP cli client (php/php5)
3255 $wgPhpCli = 'php';
3258 * DJVU settings
3259 * Path of the djvudump executable
3260 * Enable this and $wgDjvuRenderer to enable djvu rendering
3262 # $wgDjvuDump = 'djvudump';
3263 $wgDjvuDump = null;
3266 * Path of the ddjvu DJVU renderer
3267 * Enable this and $wgDjvuDump to enable djvu rendering
3269 # $wgDjvuRenderer = 'ddjvu';
3270 $wgDjvuRenderer = null;
3273 * Path of the djvutoxml executable
3274 * This works like djvudump except much, much slower as of version 3.5.
3276 * For now I recommend you use djvudump instead. The djvuxml output is
3277 * probably more stable, so we'll switch back to it as soon as they fix
3278 * the efficiency problem.
3279 * http://sourceforge.net/tracker/index.php?func=detail&aid=1704049&group_id=32953&atid=406583
3281 # $wgDjvuToXML = 'djvutoxml';
3282 $wgDjvuToXML = null;
3286 * Shell command for the DJVU post processor
3287 * Default: pnmtopng, since ddjvu generates ppm output
3288 * Set this to false to output the ppm file directly.
3290 $wgDjvuPostProcessor = 'pnmtojpeg';
3292 * File extension for the DJVU post processor output
3294 $wgDjvuOutputExtension = 'jpg';
3297 * Enable the MediaWiki API for convenient access to
3298 * machine-readable data via api.php
3300 * See http://www.mediawiki.org/wiki/API
3302 $wgEnableAPI = true;
3305 * Allow the API to be used to perform write operations
3306 * (page edits, rollback, etc.) when an authorised user
3307 * accesses it
3309 $wgEnableWriteAPI = false;
3312 * API module extensions
3313 * Associative array mapping module name to class name.
3314 * Extension modules may override the core modules.
3316 $wgAPIModules = array();
3317 $wgAPIMetaModules = array();
3318 $wgAPIPropModules = array();
3319 $wgAPIListModules = array();
3322 * Maximum amount of rows to scan in a DB query in the API
3323 * The default value is generally fine
3325 $wgAPIMaxDBRows = 5000;
3328 * Parser test suite files to be run by parserTests.php when no specific
3329 * filename is passed to it.
3331 * Extensions may add their own tests to this array, or site-local tests
3332 * may be added via LocalSettings.php
3334 * Use full paths.
3336 $wgParserTestFiles = array(
3337 "$IP/maintenance/parserTests.txt",
3341 * Break out of framesets. This can be used to prevent external sites from
3342 * framing your site with ads.
3344 $wgBreakFrames = false;
3347 * Set this to an array of special page names to prevent
3348 * maintenance/updateSpecialPages.php from updating those pages.
3350 $wgDisableQueryPageUpdate = false;
3353 * Disable output compression (enabled by default if zlib is available)
3355 $wgDisableOutputCompression = false;
3358 * If lag is higher than $wgSlaveLagWarning, show a warning in some special
3359 * pages (like watchlist). If the lag is higher than $wgSlaveLagCritical,
3360 * show a more obvious warning.
3362 $wgSlaveLagWarning = 10;
3363 $wgSlaveLagCritical = 30;
3366 * Parser configuration. Associative array with the following members:
3368 * class The class name
3370 * preprocessorClass The preprocessor class. Two classes are currently available:
3371 * Preprocessor_Hash, which uses plain PHP arrays for tempoarary
3372 * storage, and Preprocessor_DOM, which uses the DOM module for
3373 * temporary storage. Preprocessor_DOM generally uses less memory;
3374 * the speed of the two is roughly the same.
3376 * If this parameter is not given, it uses Preprocessor_DOM if the
3377 * DOM module is available, otherwise it uses Preprocessor_Hash.
3379 * Has no effect on Parser_OldPP.
3381 * The entire associative array will be passed through to the constructor as
3382 * the first parameter. Note that only Setup.php can use this variable --
3383 * the configuration will change at runtime via $wgParser member functions, so
3384 * the contents of this variable will be out-of-date. The variable can only be
3385 * changed during LocalSettings.php, in particular, it can't be changed during
3386 * an extension setup function.
3388 $wgParserConf = array(
3389 'class' => 'Parser',
3390 #'preprocessorClass' => 'Preprocessor_Hash',
3394 * LinkHolderArray batch size
3395 * For debugging
3397 $wgLinkHolderBatchSize = 1000;
3400 * Hooks that are used for outputting exceptions. Format is:
3401 * $wgExceptionHooks[] = $funcname
3402 * or:
3403 * $wgExceptionHooks[] = array( $class, $funcname )
3404 * Hooks should return strings or false
3406 $wgExceptionHooks = array();
3409 * Page property link table invalidation lists. Should only be set by exten-
3410 * sions.
3412 $wgPagePropLinkInvalidations = array(
3413 'hiddencat' => 'categorylinks',
3417 * Maximum number of links to a redirect page listed on
3418 * Special:Whatlinkshere/RedirectDestination
3420 $wgMaxRedirectLinksRetrieved = 500;
3423 * Maximum number of calls per parse to expensive parser functions such as
3424 * PAGESINCATEGORY.
3426 $wgExpensiveParserFunctionLimit = 100;
3429 * Maximum number of pages to move at once when moving subpages with a page.
3431 $wgMaximumMovedPages = 100;
3434 * Array of namespaces to generate a sitemap for when the
3435 * maintenance/generateSitemap.php script is run, or false if one is to be ge-
3436 * nerated for all namespaces.
3438 $wgSitemapNamespaces = false;
3442 * If user doesn't specify any edit summary when making a an edit, MediaWiki
3443 * will try to automatically create one. This feature can be disabled by set-
3444 * ting this variable false.
3446 $wgUseAutomaticEditSummaries = true;
3449 * Limit password attempts to X attempts per Y seconds per IP per account.
3450 * Requires memcached.
3452 $wgPasswordAttemptThrottle = array( 'count' => 5, 'seconds' => 300 );