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