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