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