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