Bump to beta4; disable compressOld as it's known to break.
[lhc/web/wiklou.git] / includes / DefaultSettings.php
1 <?php
2 /**
3 * DO NOT EDIT THIS FILE!
4 *
5 * To customize your installation, edit "LocalSettings.php".
6 *
7 * Note that since all these string interpolations are expanded
8 * before LocalSettings is included, if you localize something
9 * like $wgScriptPath, you must also localize everything that
10 * depends on it.
11 *
12 * Documentation is in the source and on:
13 * http://meta.wikimedia.org/wiki/Help:Configuration_settings_index
14 *
15 * @package MediaWiki
16 */
17
18 # This is not a valid entry point, perform no further processing unless MEDIAWIKI is defined
19 if( !defined( 'MEDIAWIKI' ) ) {
20 die( "This file is part of MediaWiki and is not a valid entry point\n" );
21 }
22
23 /**
24 * Create a site configuration object
25 * Not used for much in a default install
26 */
27 require_once( 'includes/SiteConfiguration.php' );
28 $wgConf = new SiteConfiguration;
29
30 /** MediaWiki version number */
31 $wgVersion = '1.5beta4';
32
33 /** Name of the site. It must be changed in LocalSettings.php */
34 $wgSitename = 'MediaWiki';
35
36 /** Will be same as you set @see $wgSitename */
37 $wgMetaNamespace = FALSE;
38
39
40 /** URL of the server. It will be automaticly build including https mode */
41 $wgServer = '';
42
43 if( isset( $_SERVER['SERVER_NAME'] ) ) {
44 $wgServerName = $_SERVER['SERVER_NAME'];
45 } elseif( isset( $_SERVER['HOSTNAME'] ) ) {
46 $wgServerName = $_SERVER['HOSTNAME'];
47 } elseif( isset( $_SERVER['HTTP_HOST'] ) ) {
48 $wgServerName = $_SERVER['HTTP_HOST'];
49 } elseif( isset( $_SERVER['SERVER_ADDR'] ) ) {
50 $wgServerName = $_SERVER['SERVER_ADDR'];
51 } else {
52 $wgServerName = 'localhost';
53 }
54
55 # check if server use https:
56 $wgProto = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 'https' : 'http';
57
58 $wgServer = $wgProto.'://' . $wgServerName;
59 # If the port is a non-standard one, add it to the URL
60 if( isset( $_SERVER['SERVER_PORT'] )
61 && ( ( $wgProto == 'http' && $_SERVER['SERVER_PORT'] != 80 )
62 || ( $wgProto == 'https' && $_SERVER['SERVER_PORT'] != 443 ) ) ) {
63
64 $wgServer .= ":" . $_SERVER['SERVER_PORT'];
65 }
66 unset($wgProto);
67
68
69 /**
70 * The path we should point to.
71 * It might be a virtual path in case with use apache mod_rewrite for example
72 */
73 $wgScriptPath = '/wiki';
74
75 /**
76 * Whether to support URLs like index.php/Page_title
77 * @global bool $wgUsePathInfo
78 */
79 $wgUsePathInfo = ( strpos( php_sapi_name(), 'cgi' ) === false );
80
81
82 /**#@+
83 * Script users will request to get articles
84 * ATTN: Old installations used wiki.phtml and redirect.phtml -
85 * make sure that LocalSettings.php is correctly set!
86 * @deprecated
87 */
88 /**
89 * @global string $wgScript
90 */
91 $wgScript = "{$wgScriptPath}/index.php";
92 /**
93 * @global string $wgRedirectScript
94 */
95 $wgRedirectScript = "{$wgScriptPath}/redirect.php";
96 /**#@-*/
97
98
99 /**#@+
100 * @global string
101 */
102 /**
103 * style path as seen by users
104 * @global string $wgStylePath
105 */
106 $wgStylePath = "{$wgScriptPath}/skins";
107 /**
108 * filesystem stylesheets directory
109 * @global string $wgStyleDirectory
110 */
111 $wgStyleDirectory = "{$IP}/skins";
112 $wgStyleSheetPath = &$wgStylePath;
113 $wgArticlePath = "{$wgScript}?title=$1";
114 $wgUploadPath = "{$wgScriptPath}/upload";
115 $wgUploadDirectory = "{$IP}/upload";
116 $wgHashedUploadDirectory = true;
117 $wgLogo = "{$wgUploadPath}/wiki.png";
118 $wgMathPath = "{$wgUploadPath}/math";
119 $wgMathDirectory = "{$wgUploadDirectory}/math";
120 $wgTmpDirectory = "{$wgUploadDirectory}/tmp";
121 $wgUploadBaseUrl = "";
122 /**#@-*/
123
124 /**
125 * The external URL protocols (regexp)
126 */
127 $wgUrlProtocols = 'http:\/\/|https:\/\/|ftp:\/\/|irc:\/\/|gopher:\/\/|news:|mailto:';
128
129 /** internal name of virus scanner. This servers as a key to the $wgAntivirusSetup array.
130 * Set this to NULL to disable virus scanning. If not null, every file uploaded will be scanned for viruses.
131 * @global string $wgAntivirus
132 */
133 $wgAntivirus= NULL;
134
135 /** Configuration for different virus scanners. This an associative array of associative arrays:
136 * it contains on setup array per known scanner type. The entry is selected by $wgAntivirus, i.e.
137 * valid values for $wgAntivirus are the keys defined in this array.
138 *
139 * The configuration array for each scanner contains the following keys: "command", "codemap", "messagepattern";
140 *
141 * "command" is the full command to call the virus scanner - %f will be replaced with the name of the
142 * file to scan. If not present, the filename will be appended to the command. Note that this must be
143 * overwritten if the scanner is not in the system path; in that case, plase set
144 * $wgAntivirusSetup[$wgAntivirus]['command'] to the desired command with full path.
145 *
146 * "codemap" is a mapping of exit code to return codes of the detectVirus function in SpecialUpload.
147 * An exit code mapped to AV_SCAN_FAILED causes the function to consider the scan to be failed. This will pass
148 * the file if $wgAntivirusRequired is not set.
149 * An exit code mapped to AV_SCAN_ABORTED causes the function to consider the file to have an usupported format,
150 * which is probably imune to virusses. This causes the file to pass.
151 * An exit code mapped to AV_NO_VIRUS will cause the file to pass, meaning no virus was found.
152 * All other codes (like AV_VIRUS_FOUND) will cause the function to report a virus.
153 * You may use "*" as a key in the array to catch all exit codes not mapped otherwise.
154 *
155 * "messagepattern" is a perl regular expression to extract the meaningful part of the scanners
156 * output. The relevant part should be matched as group one (\1).
157 * If not defined or the pattern does not match, the full message is shown to the user.
158 *
159 * @global array $wgAntivirusSetup
160 */
161 $wgAntivirusSetup= array(
162
163 #setup for clamav
164 'clamav' => array (
165 'command' => "clamscan --no-summary ",
166
167 'codemap'=> array (
168 "0"=> AV_NO_VIRUS, #no virus
169 "1"=> AV_VIRUS_FOUND, #virus found
170 "52"=> AV_SCAN_ABORTED, #unsupported file format (probably imune)
171 "*"=> AV_SCAN_FAILED, #else scan failed
172 ),
173
174 'messagepattern'=> '/.*?:(.*)/sim',
175 ),
176
177 #setup for f-prot
178 'f-prot' => array (
179 'command' => "f-prot ",
180
181 'codemap'=> array (
182 "0"=> AV_NO_VIRUS, #no virus
183 "3"=> AV_VIRUS_FOUND, #virus found
184 "6"=> AV_VIRUS_FOUND, #virus found
185 "*"=> AV_SCAN_FAILED, #else scan failed
186 ),
187
188 'messagepattern'=> '/.*?Infection:(.*)$/m',
189 ),
190 );
191
192
193 /** Determines if a failed virus scan (AV_SCAN_FAILED) will cause the file to be rejected.
194 * @global boolean $wgAntivirusRequired
195 */
196 $wgAntivirusRequired= true;
197
198 /** Determines if the mime type of uploaded files should be checked
199 * @global boolean $wgVerifyMimeType
200 */
201 $wgVerifyMimeType= true;
202
203 /** Sets the mime type definition file to use by MimeMagic.php.
204 * @global string $wgMimeTypeFile
205 */
206 #$wgMimeTypeFile= "/etc/mime.types";
207 $wgMimeTypeFile= "includes/mime.types";
208 #$wgMimeTypeFile= NULL; #use build in defaults only.
209
210 /** Sets the mime type info file to use by MimeMagic.php.
211 * @global string $wgMimeInfoFile
212 */
213 $wgMimeInfoFile= "includes/mime.info";
214 #$wgMimeInfoFile= NULL; #use build in defaults only.
215
216 /** Switch for loading the FileInfo extension by PECL at runtime.
217 * This should be used only if fileinfo is installed as a shared object / dynamic libary
218 * @global string $wgLoadFileinfoExtension
219 */
220 $wgLoadFileinfoExtension= false;
221
222 /** Sets an external mime detector program. The command must print only the mime type to standard output.
223 * the name of the file to process will be appended to the command given here.
224 * If not set or NULL, mime_content_type will be used if available.
225 */
226 $wgMimeDetectorCommand= NULL; # use internal mime_content_type function, available since php 4.3.0
227 #$wgMimeDetectorCommand= "file -bi" #use external mime detector (linux)
228
229 /** Switch for trivial mime detection. Used by thumb.php to disable all fance things,
230 * because only a few types of images are needed and file extensions can be trusted.
231 */
232 $wgTrivialMimeDetection= false;
233
234 /**
235 * Produce hashed HTML article paths. Used internally, do not set.
236 */
237 $wgMakeDumpLinks = false;
238
239 /**
240 * To set 'pretty' URL paths for actions other than
241 * plain page views, add to this array. For instance:
242 * 'edit' => "$wgScriptPath/edit/$1"
243 *
244 * There must be an appropriate script or rewrite rule
245 * in place to handle these URLs.
246 */
247 $wgActionPaths = array();
248
249 /**
250 * If you operate multiple wikis, you can define a shared upload path here.
251 * Uploads to this wiki will NOT be put there - they will be put into
252 * $wgUploadDirectory.
253 * If $wgUseSharedUploads is set, the wiki will look in the shared repository if
254 * no file of the given name is found in the local repository (for [[Image:..]],
255 * [[Media:..]] links). Thumbnails will also be looked for and generated in this
256 * directory.
257 */
258 $wgUseSharedUploads = false;
259 /** Full path on the web server where shared uploads can be found */
260 $wgSharedUploadPath = "http://commons.wikimedia.org/shared/images";
261 /** Fetch commons image description pages and display them on the local wiki? */
262 $wgFetchCommonsDescriptions = false;
263 /** Path on the file system where shared uploads can be found. */
264 $wgSharedUploadDirectory = "/var/www/wiki3/images";
265 /** DB name with metadata about shared directory. Set this to false if the uploads do not come from a wiki. */
266 $wgSharedUploadDBname = false;
267 /** Optional table prefix used in database. */
268 $wgSharedUploadDBprefix = '';
269 /** Cache shared metadata in memcached. Don't do this if the commons wiki is in a different memcached domain */
270 $wgCacheSharedUploads = true;
271
272 /**
273 * Point the upload navigation link to an external URL
274 * Useful if you want to use a shared repository by default
275 * without disabling local uploads
276 * e.g. $wgUploadNavigationUrl = 'http://commons.wikimedia.org/wiki/Special:Upload';
277 */
278 $wgUploadNavigationUrl = false;
279
280 /**
281 * Give a path here to use thumb.php for thumbnail generation on client request, instead of
282 * generating them on render and outputting a static URL. This is necessary if some of your
283 * apache servers don't have read/write access to the thumbnail path.
284 *
285 * Example:
286 * $wgThumbnailScriptPath = "{$wgScriptPath}/thumb.php";
287 */
288 $wgThumbnailScriptPath = false;
289 $wgSharedThumbnailScriptPath = false;
290
291 /**
292 * Set the following to false especially if you have a set of files that need to
293 * be accessible by all wikis, and you do not want to use the hash (path/a/aa/)
294 * directory layout.
295 */
296 $wgHashedSharedUploadDirectory = true;
297
298 /**
299 * Base URL for a repository wiki. Leave this blank if uploads are just stored
300 * in a shared directory and not meant to be accessible through a separate wiki.
301 * Otherwise the image description pages on the local wiki will link to the
302 * image description page on this wiki.
303 *
304 * Please specify the namespace, as in the example below.
305 */
306 $wgRepositoryBaseUrl="http://commons.wikimedia.org/wiki/Image:";
307
308
309 #
310 # Email settings
311 #
312
313 /**
314 * Site admin email address
315 * Default to wikiadmin@SERVER_NAME
316 * @global string $wgEmergencyContact
317 */
318 $wgEmergencyContact = 'wikiadmin@' . $wgServerName;
319
320 /**
321 * Password reminder email address
322 * The address we should use as sender when a user is requesting his password
323 * Default to apache@SERVER_NAME
324 * @global string $wgPasswordSender
325 */
326 $wgPasswordSender = 'Wikipedia Mail <apache@' . $wgServerName . '>';
327
328 /**
329 * dummy address which should be accepted during mail send action
330 * It might be necessay to adapt the address or to set it equal
331 * to the $wgEmergencyContact address
332 */
333 #$wgNoReplyAddress = $wgEmergencyContact;
334 $wgNoReplyAddress = 'reply@not.possible';
335
336 /**
337 * Set to true to enable the e-mail basic features:
338 * Password reminders, etc. If sending e-mail on your
339 * server doesn't work, you might want to disable this.
340 * @global bool $wgEnableEmail
341 */
342 $wgEnableEmail = true;
343
344 /**
345 * Set to true to enable user-to-user e-mail.
346 * This can potentially be abused, as it's hard to track.
347 * @global bool $wgEnableUserEmail
348 */
349 $wgEnableUserEmail = true;
350
351 /**
352 * SMTP Mode
353 * For using a direct (authenticated) SMTP server connection.
354 * Default to false or fill an array :
355 * <code>
356 * "host" => 'SMTP domain',
357 * "IDHost" => 'domain for MessageID',
358 * "port" => "25",
359 * "auth" => true/false,
360 * "username" => user,
361 * "password" => password
362 * </code>
363 *
364 * @global mixed $wgSMTP
365 */
366 $wgSMTP = false;
367
368
369 /**#@+
370 * Database settings
371 */
372 /** database host name or ip address */
373 $wgDBserver = 'localhost';
374 /** name of the database */
375 $wgDBname = 'wikidb';
376 /** */
377 $wgDBconnection = '';
378 /** Database username */
379 $wgDBuser = 'wikiuser';
380 /** Database type
381 * "mysql" for working code and "PostgreSQL" for development/broken code
382 */
383 $wgDBtype = "mysql";
384 /** Search type
385 * Leave as null to select the default search engine for the
386 * selected database type (eg SearchMySQL4), or set to a class
387 * name to override to a custom search engine.
388 */
389 $wgSearchType = null;
390 /** Table name prefix */
391 $wgDBprefix = '';
392 /** Database schema
393 * on some databases this allows separate
394 * logical namespace for application data
395 */
396 $wgDBschema = 'mediawiki';
397 /**#@-*/
398
399
400
401 /**
402 * Shared database for multiple wikis. Presently used for storing a user table
403 * for single sign-on. The server for this database must be the same as for the
404 * main database.
405 * EXPERIMENTAL
406 */
407 $wgSharedDB = null;
408
409 # Database load balancer
410 # This is a two-dimensional array, an array of server info structures
411 # Fields are:
412 # host: Host name
413 # dbname: Default database name
414 # user: DB user
415 # password: DB password
416 # type: "mysql" or "pgsql"
417 # load: ratio of DB_SLAVE load, must be >=0, the sum of all loads must be >0
418 # groupLoads: array of load ratios, the key is the query group name. A query may belong
419 # to several groups, the most specific group defined here is used.
420 #
421 # flags: bit field
422 # DBO_DEFAULT -- turns on DBO_TRX only if !$wgCommandLineMode (recommended)
423 # DBO_DEBUG -- equivalent of $wgDebugDumpSql
424 # DBO_TRX -- wrap entire request in a transaction
425 # DBO_IGNORE -- ignore errors (not useful in LocalSettings.php)
426 # DBO_NOBUFFER -- turn off buffering (not useful in LocalSettings.php)
427 #
428 # Leave at false to use the single-server variables above
429 $wgDBservers = false;
430
431 /** How long to wait for a slave to catch up to the master */
432 $wgMasterWaitTimeout = 10;
433
434 /** File to log MySQL errors to */
435 $wgDBerrorLog = false;
436
437 /** When to give an error message */
438 $wgDBClusterTimeout = 10;
439
440 /**
441 * wgDBminWordLen :
442 * MySQL 3.x : used to discard words that MySQL will not return any results for
443 * shorter values configure mysql directly.
444 * MySQL 4.x : ignore it and configure mySQL
445 * See: http://dev.mysql.com/doc/mysql/en/Fulltext_Fine-tuning.html
446 */
447 $wgDBminWordLen = 4;
448 /** Set to true if using InnoDB tables */
449 $wgDBtransactions = false;
450 /** Set to true to use enhanced fulltext search */
451 $wgDBmysql4 = false;
452
453 /**
454 * Other wikis on this site, can be administered from a single developer
455 * account.
456 * Array, interwiki prefix => database name
457 */
458 $wgLocalDatabases = array();
459
460 /**
461 * Object cache settings
462 * See Defines.php for types
463 */
464 $wgMainCacheType = CACHE_NONE;
465 $wgMessageCacheType = CACHE_ANYTHING;
466 $wgParserCacheType = CACHE_ANYTHING;
467
468 $wgSessionsInMemcached = false;
469 $wgLinkCacheMemcached = false; # Not fully tested
470
471 /**
472 * Memcached-specific settings
473 * See docs/memcached.txt
474 */
475 $wgMemCachedDebug = false; # Will be set to false in Setup.php, if the server isn't working
476 $wgMemCachedServers = array( '127.0.0.1:11000' );
477 $wgMemCachedDebug = false;
478
479
480
481 # Language settings
482 #
483 /** Site language code, should be one of ./languages/Language(.*).php */
484 $wgLanguageCode = 'en';
485
486 /** Treat language links as magic connectors, not inline links */
487 $wgInterwikiMagic = true;
488
489 /** Hide interlanguage links from the sidebar */
490 $wgHideInterlanguageLinks = false;
491
492
493 /** We speak UTF-8 all the time now, unless some oddities happen */
494 $wgInputEncoding = 'UTF-8';
495 $wgOutputEncoding = 'UTF-8';
496 $wgEditEncoding = '';
497
498 # Set this to eg 'ISO-8859-1' to perform character set
499 # conversion when loading old revisions not marked with
500 # "utf-8" flag. Use this when converting wiki to UTF-8
501 # without the burdensome mass conversion of old text data.
502 #
503 # NOTE! This DOES NOT touch any fields other than old_text.
504 # Titles, comments, user names, etc still must be converted
505 # en masse in the database before continuing as a UTF-8 wiki.
506 $wgLegacyEncoding = false;
507
508 /**
509 * If set to true, the MediaWiki 1.4 to 1.5 schema conversion will
510 * create stub reference rows in the text table instead of copying
511 * the full text of all current entries from 'cur' to 'text'.
512 *
513 * This will speed up the conversion step for large sites, but
514 * requires that the cur table be kept around for those revisions
515 * to remain viewable.
516 *
517 * maintenance/migrateCurStubs.php can be used to complete the
518 * migration in the background once the wiki is back online.
519 *
520 * This option affects the updaters *only*. Any present cur stub
521 * revisions will be readable at runtime regardless of this setting.
522 */
523 $wgLegacySchemaConversion = false;
524
525 $wgMimeType = 'text/html';
526 $wgJsMimeType = 'text/javascript';
527 $wgDocType = '-//W3C//DTD XHTML 1.0 Transitional//EN';
528 $wgDTD = 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd';
529
530 /** Enable to allow rewriting dates in page text.
531 * DOES NOT FORMAT CORRECTLY FOR MOST LANGUAGES */
532 $wgUseDynamicDates = false;
533 /** Enable dates like 'May 12' instead of '12 May', this only takes effect if
534 * the interface is set to English
535 */
536 $wgAmericanDates = false;
537 /**
538 * For Hindi and Arabic use local numerals instead of Western style (0-9)
539 * numerals in interface.
540 */
541 $wgTranslateNumerals = true;
542
543
544 # Translation using MediaWiki: namespace
545 # This will increase load times by 25-60% unless memcached is installed
546 # Interface messages will be loaded from the database.
547 $wgUseDatabaseMessages = true;
548 $wgMsgCacheExpiry = 86400;
549
550 # Whether to enable language variant conversion.
551 $wgDisableLangConversion = false;
552
553 # Use article validation feature; turned off by default
554 $wgUseValidation = false;
555 $wgValidationForAnons = true ;
556
557 # Whether to use zhdaemon to perform Chinese text processing
558 # zhdaemon is under developement, so normally you don't want to
559 # use it unless for testing
560 $wgUseZhdaemon = false;
561 $wgZhdaemonHost="localhost";
562 $wgZhdaemonPort=2004;
563
564 /** Normally you can ignore this and it will be something
565 like $wgMetaNamespace . "_talk". In some languages, you
566 may want to set this manually for grammatical reasons.
567 It is currently only respected by those languages
568 where it might be relevant and where no automatic
569 grammar converter exists.
570 */
571 $wgMetaNamespaceTalk = false;
572
573 # Miscellaneous configuration settings
574 #
575
576 $wgLocalInterwiki = 'w';
577 $wgInterwikiExpiry = 10800; # Expiry time for cache of interwiki table
578
579 /**
580 * If local interwikis are set up which allow redirects,
581 * set this regexp to restrict URLs which will be displayed
582 * as 'redirected from' links.
583 *
584 * It might look something like this:
585 * $wgRedirectSources = '!^https?://[a-z-]+\.wikipedia\.org/!';
586 *
587 * Leave at false to avoid displaying any incoming redirect markers.
588 * This does not affect intra-wiki redirects, which don't change
589 * the URL.
590 */
591 $wgRedirectSources = false;
592
593
594 $wgShowIPinHeader = true; # For non-logged in users
595 $wgMaxNameChars = 255; # Maximum number of bytes in username
596
597 $wgExtraSubtitle = '';
598 $wgSiteSupportPage = ''; # A page where you users can receive donations
599
600 $wgReadOnlyFile = "{$wgUploadDirectory}/lock_yBgMBwiR";
601
602 /**
603 * The debug log file should be not be publicly accessible if it is used, as it
604 * may contain private data. */
605 $wgDebugLogFile = '';
606
607 /**#@+
608 * @global bool
609 */
610 $wgDebugRedirects = false;
611 $wgDebugRawPage = false; # Avoid overlapping debug entries by leaving out CSS
612
613 $wgDebugComments = false;
614 $wgReadOnly = false;
615 $wgLogQueries = false;
616 $wgDebugDumpSql = false;
617
618 /**
619 * Whether to show "we're sorry, but there has been a database error" pages.
620 * Displaying errors aids in debugging, but may display information useful
621 * to an attacker.
622 */
623 $wgShowSQLErrors = false;
624
625 # Should [[Category:Dog]] on a page associate it with the
626 # category "Dog"? (a link to that category page will be
627 # added to the article, clicking it reveals a list of
628 # all articles in the category)
629 $wgUseCategoryMagic = true;
630
631 /**
632 * disable experimental dmoz-like category browsing. Output things like:
633 * Encyclopedia > Music > Style of Music > Jazz
634 */
635 $wgUseCategoryBrowser = false;
636
637 /**
638 * Keep parsed pages in a cache (objectcache table, turck, or memcached)
639 * to speed up output of the same page viewed by another user with the
640 * same options.
641 *
642 * This can provide a significant speedup for medium to large pages,
643 * so you probably want to keep it on.
644 */
645 $wgEnableParserCache = true;
646
647 /**
648 * Under which condition should a page in the main namespace be counted
649 * as a valid article? If $wgUseCommaCount is set to true, it will be
650 * counted if it contains at least one comma. If it is set to false
651 * (default), it will only be counted if it contains at least one [[wiki
652 * link]]. See http://meta.wikimedia.org/wiki/Help:Article_count
653 *
654 * Retroactively changing this variable will not affect
655 * the existing count (cf. maintenance/recount.sql).
656 */
657 $wgUseCommaCount = false;
658
659 /**#@-*/
660
661 /**
662 * wgHitcounterUpdateFreq sets how often page counters should be updated, higher
663 * values are easier on the database. A value of 1 causes the counters to be
664 * updated on every hit, any higher value n cause them to update *on average*
665 * every n hits. Should be set to either 1 or something largish, eg 1000, for
666 * maximum efficiency.
667 */
668 $wgHitcounterUpdateFreq = 1;
669
670 # User rights settings
671 #
672 # It's not 100% safe, there could be security hole using that one. Use at your
673 # own risks.
674
675 $wgWhitelistRead = false; # Pages anonymous user may see, like: = array ( "Main Page", "Special:Userlogin", "Wikipedia:Help");
676
677 $wgAllowAnonymousMinor = false; # Allow anonymous users to mark changes as 'minor'
678
679 $wgSysopUserBans = true; # Allow sysops to ban logged-in users
680 $wgSysopRangeBans = true; # Allow sysops to ban IP ranges
681
682 $wgAutoblockExpiry = 86400; # Number of seconds before autoblock entries expire
683 $wgBlockAllowsUTEdit = false; # Blocks allow users to edit their own user talk page
684
685 /**
686 * Permission keys given to users in each group.
687 * All users are implicitly in the '*' group including anonymous visitors;
688 * logged-in users are all implicitly in the 'user' group. These will be
689 * combined with the permissions of all groups that a given user is listed
690 * in in the user_groups table.
691 *
692 * This replaces wgWhitelistAccount and wgWhitelistEdit
693 */
694 $wgGroupPermissions = array();
695
696 $wgGroupPermissions['*' ]['createaccount'] = true;
697 $wgGroupPermissions['*' ]['read'] = true;
698 $wgGroupPermissions['*' ]['edit'] = true;
699
700 $wgGroupPermissions['user' ]['move'] = true;
701 $wgGroupPermissions['user' ]['read'] = true;
702 $wgGroupPermissions['user' ]['edit'] = true;
703 $wgGroupPermissions['user' ]['upload'] = true;
704
705 $wgGroupPermissions['bot' ]['bot'] = true;
706
707 $wgGroupPermissions['sysop']['block'] = true;
708 $wgGroupPermissions['sysop']['createaccount'] = true;
709 $wgGroupPermissions['sysop']['delete'] = true;
710 $wgGroupPermissions['sysop']['editinterface'] = true;
711 $wgGroupPermissions['sysop']['import'] = true;
712 $wgGroupPermissions['sysop']['importupload'] = true;
713 $wgGroupPermissions['sysop']['move'] = true;
714 $wgGroupPermissions['sysop']['patrol'] = true;
715 $wgGroupPermissions['sysop']['protect'] = true;
716 $wgGroupPermissions['sysop']['rollback'] = true;
717 $wgGroupPermissions['sysop']['upload'] = true;
718
719 $wgGroupPermissions['bureaucrat']['userrights'] = true;
720 // Used by the Special:Renameuser extension
721 $wgGroupPermissions['bureaucrat']['renameuser'] = true;
722
723 /**
724 * The developer group is deprecated, but can be activated if need be
725 * to use the 'lockdb' and 'unlockdb' special pages. Those require
726 * that a lock file be defined and creatable/removable by the web
727 * server.
728 */
729 # $wgGroupPermissions['developer']['siteadmin'] = true;
730
731
732
733 # Proxy scanner settings
734 #
735
736 /**
737 * If you enable this, every editor's IP address will be scanned for open HTTP
738 * proxies.
739 *
740 * Don't enable this. Many sysops will report "hostile TCP port scans" to your
741 * ISP and ask for your server to be shut down.
742 *
743 * You have been warned.
744 */
745 $wgBlockOpenProxies = false;
746 /** Port we want to scan for a proxy */
747 $wgProxyPorts = array( 80, 81, 1080, 3128, 6588, 8000, 8080, 8888, 65506 );
748 /** Script used to scan */
749 $wgProxyScriptPath = "$IP/proxy_check.php";
750 /** */
751 $wgProxyMemcExpiry = 86400;
752 /** This should always be customised in LocalSettings.php */
753 $wgSecretKey = false;
754 /** big list of banned IP addresses, in the keys not the values */
755 $wgProxyList = array();
756 /** deprecated */
757 $wgProxyKey = false;
758
759 /** Number of accounts each IP address may create, 0 to disable.
760 * Requires memcached */
761 $wgAccountCreationThrottle = 0;
762
763 # Client-side caching:
764
765 /** Allow client-side caching of pages */
766 $wgCachePages = true;
767
768 /**
769 * Set this to current time to invalidate all prior cached pages. Affects both
770 * client- and server-side caching.
771 */
772 $wgCacheEpoch = '20030516000000';
773
774
775 # Server-side caching:
776
777 /**
778 * This will cache static pages for non-logged-in users to reduce
779 * database traffic on public sites.
780 * Must set $wgShowIPinHeader = false
781 */
782 $wgUseFileCache = false;
783 /** Directory where the cached page will be saved */
784 $wgFileCacheDirectory = "{$wgUploadDirectory}/cache";
785
786 /**
787 * When using the file cache, we can store the cached HTML gzipped to save disk
788 * space. Pages will then also be served compressed to clients that support it.
789 * THIS IS NOT COMPATIBLE with ob_gzhandler which is now enabled if supported in
790 * the default LocalSettings.php! If you enable this, remove that setting first.
791 *
792 * Requires zlib support enabled in PHP.
793 */
794 $wgUseGzip = false;
795
796 # Email notification settings
797 #
798
799 /** For email notification on page changes */
800 $wgPasswordSender = $wgEmergencyContact;
801
802 # true: from page editor if s/he opted-in
803 # false: Enotif mails appear to come from $wgEmergencyContact
804 $wgEnotifFromEditor = false;
805
806 // TODO move UPO to preferences probably ?
807 # If set to true, users get a corresponding option in their preferences and can choose to enable or disable at their discretion
808 # If set to false, the corresponding input form on the user preference page is suppressed
809 # It call this to be a "user-preferences-option (UPO)"
810 $wgEmailAuthentication = true; # UPO (if this is set to false, texts referring to authentication are suppressed)
811 $wgEnotifWatchlist = false; # UPO
812 $wgEnotifUserTalk = false; # UPO
813 $wgEnotifRevealEditorAddress = false; # UPO; reply-to address may be filled with page editor's address (if user allowed this in the preferences)
814 $wgEnotifMinorEdits = true; # UPO; false: "minor edits" on pages do not trigger notification mails.
815 # # Attention: _every_ change on a user_talk page trigger a notification mail (if the user is not yet notified)
816
817
818 /** Show watching users in recent changes, watchlist and page history views */
819 $wgRCShowWatchingUsers = false; # UPO
820 /** Show watching users in Page views */
821 $wgPageShowWatchingUsers = false;
822 /**
823 * Show "Updated (since my last visit)" marker in RC view, watchlist and history
824 * view for watched pages with new changes */
825 $wgShowUpdatedMarker = true;
826
827 $wgCookieExpiration = 2592000;
828
829 /** Clock skew or the one-second resolution of time() can occasionally cause cache
830 * problems when the user requests two pages within a short period of time. This
831 * variable adds a given number of seconds to vulnerable timestamps, thereby giving
832 * a grace period.
833 */
834 $wgClockSkewFudge = 5;
835
836 # Squid-related settings
837 #
838
839 /** Enable/disable Squid */
840 $wgUseSquid = false;
841
842 /** If you run Squid3 with ESI support, enable this (default:false): */
843 $wgUseESI = false;
844
845 /** Internal server name as known to Squid, if different */
846 # $wgInternalServer = 'http://yourinternal.tld:8000';
847 $wgInternalServer = $wgServer;
848
849 /**
850 * Cache timeout for the squid, will be sent as s-maxage (without ESI) or
851 * Surrogate-Control (with ESI). Without ESI, you should strip out s-maxage in
852 * the Squid config. 18000 seconds = 5 hours, more cache hits with 2678400 = 31
853 * days
854 */
855 $wgSquidMaxage = 18000;
856
857 /**
858 * A list of proxy servers (ips if possible) to purge on changes don't specify
859 * ports here (80 is default)
860 */
861 # $wgSquidServers = array('127.0.0.1');
862 $wgSquidServers = array();
863 $wgSquidServersNoPurge = array();
864
865 /** Maximum number of titles to purge in any one client operation */
866 $wgMaxSquidPurgeTitles = 400;
867
868 /** HTCP multicast purging */
869 $wgHTCPPort = 4827;
870 $wgHTCPMulticastTTL = 1;
871 # $wgHTCPMulticastAddress = "224.0.0.85";
872
873 # Cookie settings:
874 #
875 /**
876 * Set to set an explicit domain on the login cookies eg, "justthis.domain. org"
877 * or ".any.subdomain.net"
878 */
879 $wgCookieDomain = '';
880 $wgCookiePath = '/';
881 $wgDisableCookieCheck = false;
882
883 /** Whether to allow inline image pointing to other websites */
884 $wgAllowExternalImages = true;
885
886 /** Disable database-intensive features */
887 $wgMiserMode = false;
888 /** Disable all query pages if miser mode is on, not just some */
889 $wgDisableQueryPages = false;
890 /** Generate a watchlist once every hour or so */
891 $wgUseWatchlistCache = false;
892 /** The hour or so mentioned above */
893 $wgWLCacheTimeout = 3600;
894
895 /**
896 * To use inline TeX, you need to compile 'texvc' (in the 'math' subdirectory of
897 * the MediaWiki package and have latex, dvips, gs (ghostscript), andconvert
898 * (ImageMagick) installed and available in the PATH.
899 * Please see math/README for more information.
900 */
901 $wgUseTeX = false;
902 /** Location of the texvc binary */
903 $wgTexvc = './math/texvc';
904
905 #
906 # Profiling / debugging
907 #
908
909 /** Enable for more detailed by-function times in debug log */
910 $wgProfiling = false;
911 /** Only record profiling info for pages that took longer than this */
912 $wgProfileLimit = 0.0;
913 /** Don't put non-profiling info into log file */
914 $wgProfileOnly = false;
915 /** Log sums from profiling into "profiling" table in db. */
916 $wgProfileToDatabase = false;
917 /** Only profile every n requests when profiling is turned on */
918 $wgProfileSampleRate = 1;
919 /** If true, print a raw call tree instead of per-function report */
920 $wgProfileCallTree = false;
921
922 /** Detects non-matching wfProfileIn/wfProfileOut calls */
923 $wgDebugProfiling = false;
924 /** Output debug message on every wfProfileIn/wfProfileOut */
925 $wgDebugFunctionEntry = 0;
926 /** Lots of debugging output from SquidUpdate.php */
927 $wgDebugSquid = false;
928
929 $wgDisableCounters = false;
930 $wgDisableTextSearch = false;
931 /**
932 * If you've disabled search semi-permanently, this also disables updates to the
933 * table. If you ever re-enable, be sure to rebuild the search table.
934 */
935 $wgDisableSearchUpdate = false;
936 /** Uploads have to be specially set up to be secure */
937 $wgEnableUploads = false;
938 /**
939 * Show EXIF data, on by default if available.
940 * Requires PHP's EXIF extension: http://www.php.net/manual/en/ref.exif.php
941 */
942 $wgShowEXIF = function_exists( 'exif_read_data' );
943
944 /**
945 * Set to true to enable the upload _link_ while local uploads are disabled.
946 * Assumes that the special page link will be bounced to another server where
947 * uploads do work.
948 */
949 $wgRemoteUploads = false;
950 $wgDisableAnonTalk = false;
951 /**
952 * Do DELETE/INSERT for link updates instead of incremental
953 */
954 $wgUseDumbLinkUpdate = false;
955
956 /**
957 * Anti-lock flags - bitfield
958 * ALF_PRELOAD_LINKS
959 * Preload links during link update for save
960 * ALF_PRELOAD_EXISTENCE
961 * Preload cur_id during replaceLinkHolders
962 * ALF_NO_LINK_LOCK
963 * Don't use locking reads when updating the link table. This is
964 * necessary for wikis with a high edit rate for performance
965 * reasons, but may cause link table inconsistency
966 * ALF_NO_BLOCK_LOCK
967 * As for ALF_LINK_LOCK, this flag is a necessity for high-traffic
968 * wikis.
969 */
970 $wgAntiLockFlags = 0;
971
972 /**
973 * Path to the GNU diff3 utility. If the file doesn't exist, edit conflicts will
974 * fall back to the old behaviour (no merging).
975 */
976 $wgDiff3 = '/usr/bin/diff3';
977
978 /**
979 * We can also compress text in the old revisions table. If this is set on, old
980 * revisions will be compressed on page save if zlib support is available. Any
981 * compressed revisions will be decompressed on load regardless of this setting
982 * *but will not be readable at all* if zlib support is not available.
983 */
984 $wgCompressRevisions = false;
985
986 /**
987 * This is the list of preferred extensions for uploading files. Uploading files
988 * with extensions not in this list will trigger a warning.
989 */
990 $wgFileExtensions = array( 'png', 'gif', 'jpg', 'jpeg' );
991
992 /** Files with these extensions will never be allowed as uploads. */
993 $wgFileBlacklist = array(
994 # HTML may contain cookie-stealing JavaScript and web bugs
995 'html', 'htm', 'js', 'jsb',
996 # PHP scripts may execute arbitrary code on the server
997 'php', 'phtml', 'php3', 'php4', 'phps',
998 # Other types that may be interpreted by some servers
999 'shtml', 'jhtml', 'pl', 'py', 'cgi',
1000 # May contain harmful executables for Windows victims
1001 'exe', 'scr', 'dll', 'msi', 'vbs', 'bat', 'com', 'pif', 'cmd', 'vxd', 'cpl' );
1002
1003 /** Files with these mime types will never be allowed as uploads
1004 * if $wgVerifyMimeType is enabled.
1005 */
1006 $wgMimeTypeBlacklist= array(
1007 # HTML may contain cookie-stealing JavaScript and web bugs
1008 'text/html', 'text/javascript', 'text/x-javascript', 'application/x-shellscript',
1009 # PHP scripts may execute arbitrary code on the server
1010 'application/x-php', 'text/x-php',
1011 # Other types that may be interpreted by some servers
1012 'text/x-python', 'text/x-perl', 'text/x-bash', 'text/x-sh', 'text/x-csh'
1013 );
1014
1015 /** This is a flag to determine whether or not to check file extensions on upload. */
1016 $wgCheckFileExtensions = true;
1017
1018 /**
1019 * If this is turned off, users may override the warning for files not covered
1020 * by $wgFileExtensions.
1021 */
1022 $wgStrictFileExtensions = true;
1023
1024 /** Warn if uploaded files are larger than this */
1025 $wgUploadSizeWarning = 150 * 1024;
1026
1027 /** For compatibility with old installations set to false */
1028 $wgPasswordSalt = true;
1029
1030 /** Which namespaces should support subpages?
1031 * See Language.php for a list of namespaces.
1032 */
1033 $wgNamespacesWithSubpages = array(
1034 NS_TALK => true,
1035 NS_USER => true,
1036 NS_USER_TALK => true,
1037 NS_PROJECT_TALK => true,
1038 NS_IMAGE_TALK => true,
1039 NS_MEDIAWIKI_TALK => true,
1040 NS_TEMPLATE_TALK => true,
1041 NS_HELP_TALK => true,
1042 NS_CATEGORY_TALK => true
1043 );
1044
1045 $wgNamespacesToBeSearchedDefault = array(
1046 NS_MAIN => true,
1047 );
1048
1049 /** If set, a bold ugly notice will show up at the top of every page. */
1050 $wgSiteNotice = '';
1051
1052
1053 #
1054 # Images settings
1055 #
1056
1057 /** dynamic server side image resizing ("Thumbnails") */
1058 $wgUseImageResize = false;
1059
1060 /**
1061 * Resizing can be done using PHP's internal image libraries or using
1062 * ImageMagick. The later supports more file formats than PHP, which only
1063 * supports PNG, GIF, JPG, XBM and WBMP.
1064 *
1065 * Use Image Magick instead of PHP builtin functions.
1066 */
1067 $wgUseImageMagick = false;
1068 /** The convert command shipped with ImageMagick */
1069 $wgImageMagickConvertCommand = '/usr/bin/convert';
1070
1071 # Scalable Vector Graphics (SVG) may be uploaded as images.
1072 # Since SVG support is not yet standard in browsers, it is
1073 # necessary to rasterize SVGs to PNG as a fallback format.
1074 #
1075 # An external program is required to perform this conversion:
1076 $wgSVGConverters = array(
1077 'ImageMagick' => '$path/convert -background white -geometry $width $input $output',
1078 'sodipodi' => '$path/sodipodi -z -w $width -f $input -e $output',
1079 'inkscape' => '$path/inkscape -z -w $width -f $input -e $output',
1080 'batik' => 'java -Djava.awt.headless=true -jar $path/batik-rasterizer.jar -w $width -d $output $input',
1081 );
1082 /** Pick one of the above */
1083 $wgSVGConverter = 'ImageMagick';
1084 /** If not in the executable PATH, specify */
1085 $wgSVGConverterPath = '';
1086
1087 /** Set $wgCommandLineMode if it's not set already, to avoid notices */
1088 if( !isset( $wgCommandLineMode ) ) {
1089 $wgCommandLineMode = false;
1090 }
1091
1092
1093 #
1094 # Recent changes settings
1095 #
1096
1097 /** Log IP addresses in the recentchanges table */
1098 $wgPutIPinRC = false;
1099
1100 /**
1101 * Recentchanges items are periodically purged; entries older than this many
1102 * seconds will go.
1103 * For one week : 7 * 24 * 3600
1104 */
1105 $wgRCMaxAge = 7 * 24 * 3600;
1106
1107
1108 # Send RC updates via UDP
1109 $wgRC2UDPAddress = false;
1110 $wgRC2UDPPort = false;
1111 $wgRC2UDPPrefix = '';
1112
1113 #
1114 # Copyright and credits settings
1115 #
1116
1117 /** RDF metadata toggles */
1118 $wgEnableDublinCoreRdf = false;
1119 $wgEnableCreativeCommonsRdf = false;
1120
1121 /** Override for copyright metadata.
1122 * TODO: these options need documentation
1123 */
1124 $wgRightsPage = NULL;
1125 $wgRightsUrl = NULL;
1126 $wgRightsText = NULL;
1127 $wgRightsIcon = NULL;
1128
1129 /** Set this to some HTML to override the rights icon with an arbitrary logo */
1130 $wgCopyrightIcon = NULL;
1131
1132 /** Set this to true if you want detailed copyright information forms on Upload. */
1133 $wgUseCopyrightUpload = false;
1134
1135 /** Set this to false if you want to disable checking that detailed copyright
1136 * information values are not empty. */
1137 $wgCheckCopyrightUpload = true;
1138
1139 /**
1140 * Set this to the number of authors that you want to be credited below an
1141 * article text. Set it to zero to hide the attribution block, and a negative
1142 * number (like -1) to show all authors. Note that this will require 2-3 extra
1143 * database hits, which can have a not insignificant impact on performance for
1144 * large wikis.
1145 */
1146 $wgMaxCredits = 0;
1147
1148 /** If there are more than $wgMaxCredits authors, show $wgMaxCredits of them.
1149 * Otherwise, link to a separate credits page. */
1150 $wgShowCreditsIfMax = true;
1151
1152
1153
1154 /**
1155 * Set this to false to avoid forcing the first letter of links to capitals.
1156 * WARNING: may break links! This makes links COMPLETELY case-sensitive. Links
1157 * appearing with a capital at the beginning of a sentence will *not* go to the
1158 * same place as links in the middle of a sentence using a lowercase initial.
1159 */
1160 $wgCapitalLinks = true;
1161
1162 /**
1163 * List of interwiki prefixes for wikis we'll accept as sources for
1164 * Special:Import (for sysops). Since complete page history can be imported,
1165 * these should be 'trusted'.
1166 *
1167 * If a user has the 'import' permission but not the 'importupload' permission,
1168 * they will only be able to run imports through this transwiki interface.
1169 */
1170 $wgImportSources = array();
1171
1172
1173
1174 /** Text matching this regular expression will be recognised as spam
1175 * See http://en.wikipedia.org/wiki/Regular_expression */
1176 $wgSpamRegex = false;
1177 /** Similarly if this function returns true */
1178 $wgFilterCallback = false;
1179
1180 /** Go button goes straight to the edit screen if the article doesn't exist. */
1181 $wgGoToEdit = false;
1182
1183 /** Allow limited user-specified HTML in wiki pages?
1184 * It will be run through a whitelist for security. Set this to false if you
1185 * want wiki pages to consist only of wiki markup. Note that replacements do not
1186 * yet exist for all HTML constructs.*/
1187 $wgUserHtml = true;
1188
1189 /** Allow raw, unchecked HTML in <html>...</html> sections.
1190 * THIS IS VERY DANGEROUS on a publically editable site, so USE wgGroupPermissions
1191 * TO RESTRICT EDITING to only those that you trust
1192 */
1193 $wgRawHtml = false;
1194
1195 /**
1196 * $wgUseTidy: use tidy to make sure HTML output is sane.
1197 * This should only be enabled if $wgUserHtml is true.
1198 * tidy is a free tool that fixes broken HTML.
1199 * See http://www.w3.org/People/Raggett/tidy/
1200 * $wgTidyBin should be set to the path of the binary and
1201 * $wgTidyConf to the path of the configuration file.
1202 * $wgTidyOpts can include any number of parameters.
1203 *
1204 * $wgTidyInternal controls the use of the PECL extension to use an in-
1205 * process tidy library instead of spawning a separate program.
1206 * Normally you shouldn't need to override the setting except for
1207 * debugging. To install, use 'pear install tidy' and add a line
1208 * 'extension=tidy.so' to php.ini.
1209 */
1210 $wgUseTidy = false;
1211 $wgTidyBin = 'tidy';
1212 $wgTidyConf = $IP.'/extensions/tidy/tidy.conf';
1213 $wgTidyOpts = '';
1214 $wgTidyInternal = function_exists( 'tidy_load_config' );
1215
1216 /** See list of skins and their symbolic names in languages/Language.php */
1217 $wgDefaultSkin = 'monobook';
1218
1219 /**
1220 * Settings added to this array will override the language globals for the user
1221 * preferences used by anonymous visitors and newly created accounts. (See names
1222 * and sample values in languages/Language.php)
1223 * For instance, to disable section editing links:
1224 * $wgDefaultUserOptions ['editsection'] = 0;
1225 *
1226 */
1227 $wgDefaultUserOptions = array();
1228
1229 /** Whether or not to allow and use real name fields. Defaults to true. */
1230 $wgAllowRealName = true;
1231
1232 /** Use XML parser? */
1233 $wgUseXMLparser = false ;
1234
1235 /** Extensions */
1236 $wgSkinExtensionFunctions = array();
1237 $wgExtensionFunctions = array();
1238 /**
1239 * An array of extension types and inside that their names, versions, authors
1240 * and urls, note that the version and url key can be omitted.
1241 *
1242 * <code>
1243 * $wgExtensionCredits[$type][] = array(
1244 * 'name' => 'Example extension',
1245 * 'version' => 1.9,
1246 * 'author' => 'Foo Barstein',
1247 * 'url' => 'http://wwww.example.com/Example%20Extension/',
1248 * );
1249 * </code>
1250 *
1251 * Where $type is 'specialpage', 'parserhook', or 'other'.
1252 */
1253 $wgExtensionCredits = array();
1254
1255 /**
1256 * Allow user Javascript page?
1257 * This enables a lot of neat customizations, but may
1258 * increase security risk to users and server load.
1259 */
1260 $wgAllowUserJs = false;
1261
1262 /**
1263 * Allow user Cascading Style Sheets (CSS)?
1264 * This enables a lot of neat customizations, but may
1265 * increase security risk to users and server load.
1266 */
1267 $wgAllowUserCss = false;
1268
1269 /** Use the site's Javascript page? */
1270 $wgUseSiteJs = true;
1271
1272 /** Use the site's Cascading Style Sheets (CSS)? */
1273 $wgUseSiteCss = true;
1274
1275 /** Filter for Special:Randompage. Part of a WHERE clause */
1276 $wgExtraRandompageSQL = false;
1277
1278 /** Allow the "info" action, very inefficient at the moment */
1279 $wgAllowPageInfo = false;
1280
1281 /** Maximum indent level of toc. */
1282 $wgMaxTocLevel = 999;
1283
1284 /** Use external C++ diff engine (module wikidiff from the extensions package) */
1285 $wgUseExternalDiffEngine = false;
1286
1287 /** Use RC Patrolling to check for vandalism */
1288 $wgUseRCPatrol = true;
1289
1290 /** Set maximum number of results to return in syndication feeds (RSS, Atom) for
1291 * eg Recentchanges, Newpages. */
1292 $wgFeedLimit = 50;
1293
1294 /** _Minimum_ timeout for cached Recentchanges feed, in seconds.
1295 * A cached version will continue to be served out even if changes
1296 * are made, until this many seconds runs out since the last render. */
1297 $wgFeedCacheTimeout = 60;
1298
1299 /** When generating Recentchanges RSS/Atom feed, diffs will not be generated for
1300 * pages larger than this size. */
1301 $wgFeedDiffCutoff = 32768;
1302
1303
1304 /**
1305 * Additional namespaces. If the namespaces defined in Language.php and
1306 * Namespace.php are insufficient, you can create new ones here, for example,
1307 * to import Help files in other languages.
1308 * PLEASE NOTE: Once you delete a namespace, the pages in that namespace will
1309 * no longer be accessible. If you rename it, then you can access them through
1310 * the new namespace name.
1311 *
1312 * Custom namespaces should start at 100 to avoid conflicting with standard
1313 * namespaces, and should always follow the even/odd main/talk pattern.
1314 */
1315 #$wgExtraNamespaces =
1316 # array(100 => "Hilfe",
1317 # 101 => "Hilfe_Diskussion",
1318 # 102 => "Aide",
1319 # 103 => "Discussion_Aide"
1320 # );
1321 $wgExtraNamespaces = NULL;
1322
1323 /**
1324 * Limit images on image description pages to a user-selectable limit. In order
1325 * to reduce disk usage, limits can only be selected from a list. This is the
1326 * list of settings the user can choose from:
1327 */
1328 $wgImageLimits = array (
1329 array(320,240),
1330 array(640,480),
1331 array(800,600),
1332 array(1024,768),
1333 array(1280,1024),
1334 array(10000,10000) );
1335
1336 /**
1337 * Adjust thumbnails on image pages according to a user setting. In order to
1338 * reduce disk usage, the values can only be selected from a list. This is the
1339 * list of settings the user can choose from:
1340 */
1341 $wgThumbLimits = array(
1342 120,
1343 150,
1344 180,
1345 200,
1346 250,
1347 300
1348 );
1349
1350 /**
1351 * On category pages, show thumbnail gallery for images belonging to that
1352 * category instead of listing them as articles.
1353 */
1354 $wgCategoryMagicGallery = true;
1355
1356 /**
1357 * Browser Blacklist for unicode non compliant browsers
1358 * Contains a list of regexps : "/regexp/" matching problematic browsers
1359 */
1360 $wgBrowserBlackList = array(
1361 "/Mozilla\/4\.78 \[en\] \(X11; U; Linux/",
1362 /**
1363 * MSIE on Mac OS 9 is teh sux0r, converts þ to <thorn>, ð to <eth>, Þ to <THORN> and Ð to <ETH>
1364 *
1365 * Known useragents:
1366 * - Mozilla/4.0 (compatible; MSIE 5.0; Mac_PowerPC)
1367 * - Mozilla/4.0 (compatible; MSIE 5.15; Mac_PowerPC)
1368 * - Mozilla/4.0 (compatible; MSIE 5.23; Mac_PowerPC)
1369 * - [...]
1370 *
1371 * @link http://en.wikipedia.org/w/index.php?title=User%3A%C6var_Arnfj%F6r%F0_Bjarmason%2Ftestme&diff=12356041&oldid=12355864
1372 * @link http://en.wikipedia.org/wiki/Template%3AOS9
1373 */
1374 "/Mozilla\/4\.0 \(compatible; MSIE \d+\.\d+; Mac_PowerPC\)/"
1375 );
1376
1377 /**
1378 * Fake out the timezone that the server thinks it's in. This will be used for
1379 * date display and not for what's stored in the DB. Leave to null to retain
1380 * your server's OS-based timezone value. This is the same as the timezone.
1381 */
1382 # $wgLocaltimezone = 'GMT';
1383 # $wgLocaltimezone = 'PST8PDT';
1384 # $wgLocaltimezone = 'Europe/Sweden';
1385 # $wgLocaltimezone = 'CET';
1386 $wgLocaltimezone = null;
1387
1388
1389 /**
1390 * When translating messages with wfMsg(), it is not always clear what should be
1391 * considered UI messages and what shoud be content messages.
1392 *
1393 * For example, for regular wikipedia site like en, there should be only one
1394 * 'mainpage', therefore when getting the link of 'mainpage', we should treate
1395 * it as content of the site and call wfMsgForContent(), while for rendering the
1396 * text of the link, we call wfMsg(). The code in default behaves this way.
1397 * However, sites like common do offer different versions of 'mainpage' and the
1398 * like for different languages. This array provides a way to override the
1399 * default behavior. For example, to allow language specific mainpage and
1400 * community portal, set
1401 *
1402 * $wgForceUIMsgAsContentMsg = array( 'mainpage', 'portal-url' );
1403 */
1404 $wgForceUIMsgAsContentMsg = array();
1405
1406
1407 /**
1408 * Authentication plugin.
1409 */
1410 $wgAuth = null;
1411
1412 /**
1413 * Global list of hooks.
1414 * Add a hook by doing:
1415 * $wgHooks['event_name'][] = $function;
1416 * or:
1417 * $wgHooks['event_name'][] = array($function, $data);
1418 * or:
1419 * $wgHooks['event_name'][] = array($object, 'method');
1420 */
1421 $wgHooks = array();
1422
1423 /**
1424 * Experimental preview feature to fetch rendered text
1425 * over an XMLHttpRequest from JavaScript instead of
1426 * forcing a submit and reload of the whole page.
1427 * Leave disabled unless you're testing it.
1428 */
1429 $wgLivePreview = false;
1430
1431 /**
1432 * Disable the internal MySQL-based search, to allow it to be
1433 * implemented by an extension instead.
1434 */
1435 $wgDisableInternalSearch = false;
1436
1437 /**
1438 * Set this to a URL to forward search requests to some external location.
1439 * If the URL includes '$1', this will be replaced with the URL-encoded
1440 * search term.
1441 *
1442 * For example, to forward to Google you'd have something like:
1443 * $wgSearchForwardUrl = 'http://www.google.com/search?q=$1' .
1444 * '&domains=http://example.com' .
1445 * '&sitesearch=http://example.com' .
1446 * '&ie=utf-8&oe=utf-8';
1447 */
1448 $wgSearchForwardUrl = null;
1449
1450 /**
1451 * If true, external URL links in wiki text will be given the
1452 * rel="nofollow" attribute as a hint to search engines that
1453 * they should not be followed for ranking purposes as they
1454 * are user-supplied and thus subject to spamming.
1455 */
1456 $wgNoFollowLinks = true;
1457
1458 /**
1459 * Specifies the minimal length of a user password. If set to
1460 * 0, empty passwords are allowed.
1461 */
1462 $wgMinimalPasswordLength = 0;
1463
1464 /**
1465 * Activate external editor interface for files and pages
1466 * See http://meta.wikimedia.org/wiki/Help:External_editors
1467 */
1468 $wgUseExternalEditor = true;
1469
1470 /** Whether or not to sort special pages in Special:Specialpages */
1471
1472 $wgSortSpecialPages = true;
1473
1474 /**
1475 * Specify the name of a skin that should not be presented in the
1476 * list of available skins.
1477 * Use for blacklisting a skin which you do not want to remove
1478 * from the .../skins/ directory
1479 */
1480 $wgSkipSkin = '';
1481 $wgSkipSkins = array(); # More of the same
1482
1483 /**
1484 * Array of disabled article actions, e.g. view, edit, dublincore, delete, etc.
1485 */
1486 $wgDisabledActions = array();
1487
1488 /**
1489 * Disable redirects to special pages and interwiki redirects, which use a 302 and have no "redirected from" link
1490 */
1491 $wgDisableHardRedirects = false;
1492
1493 /**
1494 * Use http.dnsbl.sorbs.net to check for open proxies
1495 */
1496 $wgEnableSorbs = false;
1497
1498 /**
1499 * Use opm.blitzed.org to check for open proxies.
1500 * Not yet actually used.
1501 */
1502 $wgEnableOpm = false;
1503
1504 /**
1505 * Proxy whitelist, list of addresses that are assumed to be non-proxy despite what the other
1506 * methods might say
1507 */
1508 $wgProxyWhitelist = array();
1509
1510 /**
1511 * Simple rate limiter options to brake edit floods.
1512 * Maximum number actions allowed in the given number of seconds;
1513 * after that the violating client receives HTTP 500 error pages
1514 * until the period elapses.
1515 *
1516 * array( 4, 60 ) for a maximum of 4 hits in 60 seconds.
1517 *
1518 * This option set is experimental and likely to change.
1519 * Requires memcached.
1520 */
1521 $wgRateLimits = array(
1522 'edit' => array(
1523 'anon' => null, // for any and all anonymous edits (aggregate)
1524 'user' => null, // for each logged-in user
1525 'newbie' => null, // for each recent account; overrides 'user'
1526 'ip' => null, // for each anon and recent account
1527 'subnet' => null, // ... with final octet removed
1528 ),
1529 'move' => array(
1530 'user' => null,
1531 'newbie' => null,
1532 'ip' => null,
1533 'subnet' => null,
1534 ),
1535 );
1536
1537 /**
1538 * Set to a filename to log rate limiter hits.
1539 */
1540 $wgRateLimitLog = null;
1541
1542 /**
1543 * On Special:Unusedimages, consider images "used", if they are put
1544 * into a category. Default (false) is not to count those as used.
1545 */
1546 $wgCountCategorizedImagesAsUsed = false;
1547
1548 /**
1549 * External stores allow including content
1550 * from non database sources following URL links
1551 *
1552 * Short names of ExternalStore classes may be specified in an array here:
1553 * $wgExternalStores = array("http","file","custom")...
1554 *
1555 * CAUTION: Access to database might lead to code execution
1556 */
1557 $wgExternalStores = false;
1558
1559 /**
1560 * list of trusted media-types and mime types.
1561 * Use the MEDIATYPE_xxx constants to represent media types.
1562 * This list is used by Image::isSafeFile
1563 *
1564 * Types not listed here will have a warning about unsafe content
1565 * displayed on the images description page. It would also be possible
1566 * to use this for further restrictions, like disabling direct
1567 * [[media:...]] links for non-trusted formats.
1568 */
1569 $wgTrustedMediaFormats= array(
1570 MEDIATYPE_BITMAP, //all bitmap formats
1571 MEDIATYPE_AUDIO, //all audio formats
1572 MEDIATYPE_VIDEO, //all plain video formats
1573 "image/svg", //svg (only needed if inline rendering of svg is not supported)
1574 "application/pdf", //PDF files
1575 #"application/x-shockwafe-flash", //flash/shockwave movie
1576 );
1577
1578 /**
1579 * Allow special page inclusions such as {{Special:Allpages}}
1580 */
1581 $wgAllowSpecialInclusion = true;
1582
1583 /**
1584 * Timeout for HTTP requests done via CURL
1585 */
1586 $wgHTTPTimeout = 3;
1587
1588 /**
1589 * Proxy to use for CURL requests.
1590 */
1591 $wgHTTPProxy = false;
1592
1593 /**
1594 * Enable interwiki transcluding. Only when iw_trans=1.
1595 */
1596 $wgEnableScaryTranscluding = false;
1597
1598 /**
1599 * Support blog-style "trackbacks" for articles. See
1600 * http://www.sixapart.com/pronet/docs/trackback_spec for details.
1601 */
1602 $wgUseTrackbacks = false;
1603
1604 ?>