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