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