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