c571df2187fc1f9f5c4b49ba910af930fa306d88
[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.5beta3';
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 $wgUrlProtcols = '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 */
963 $wgAntiLockFlags = 0;
964
965 /**
966 * Path to the GNU diff3 utility. If the file doesn't exist, edit conflicts will
967 * fall back to the old behaviour (no merging).
968 */
969 $wgDiff3 = '/usr/bin/diff3';
970
971 /**
972 * We can also compress text in the old revisions table. If this is set on, old
973 * revisions will be compressed on page save if zlib support is available. Any
974 * compressed revisions will be decompressed on load regardless of this setting
975 * *but will not be readable at all* if zlib support is not available.
976 */
977 $wgCompressRevisions = false;
978
979 /**
980 * This is the list of preferred extensions for uploading files. Uploading files
981 * with extensions not in this list will trigger a warning.
982 */
983 $wgFileExtensions = array( 'png', 'gif', 'jpg', 'jpeg' );
984
985 /** Files with these extensions will never be allowed as uploads. */
986 $wgFileBlacklist = array(
987 # HTML may contain cookie-stealing JavaScript and web bugs
988 'html', 'htm', 'js', 'jsb',
989 # PHP scripts may execute arbitrary code on the server
990 'php', 'phtml', 'php3', 'php4', 'phps',
991 # Other types that may be interpreted by some servers
992 'shtml', 'jhtml', 'pl', 'py', 'cgi',
993 # May contain harmful executables for Windows victims
994 'exe', 'scr', 'dll', 'msi', 'vbs', 'bat', 'com', 'pif', 'cmd', 'vxd', 'cpl' );
995
996 /** Files with these mime types will never be allowed as uploads
997 * if $wgVerifyMimeType is enabled.
998 */
999 $wgMimeTypeBlacklist= array(
1000 # HTML may contain cookie-stealing JavaScript and web bugs
1001 'text/html', 'text/javascript', 'text/x-javascript', 'application/x-shellscript',
1002 # PHP scripts may execute arbitrary code on the server
1003 'application/x-php', 'text/x-php',
1004 # Other types that may be interpreted by some servers
1005 'text/x-python', 'text/x-perl', 'text/x-bash', 'text/x-sh', 'text/x-csh'
1006 );
1007
1008 /** This is a flag to determine whether or not to check file extensions on upload. */
1009 $wgCheckFileExtensions = true;
1010
1011 /**
1012 * If this is turned off, users may override the warning for files not covered
1013 * by $wgFileExtensions.
1014 */
1015 $wgStrictFileExtensions = true;
1016
1017 /** Warn if uploaded files are larger than this */
1018 $wgUploadSizeWarning = 150 * 1024;
1019
1020 /** For compatibility with old installations set to false */
1021 $wgPasswordSalt = true;
1022
1023 /** Which namespaces should support subpages?
1024 * See Language.php for a list of namespaces.
1025 */
1026 $wgNamespacesWithSubpages = array(
1027 NS_TALK => true,
1028 NS_USER => true,
1029 NS_USER_TALK => true,
1030 NS_PROJECT_TALK => true,
1031 NS_IMAGE_TALK => true,
1032 NS_MEDIAWIKI_TALK => true,
1033 NS_TEMPLATE_TALK => true,
1034 NS_HELP_TALK => true,
1035 NS_CATEGORY_TALK => true
1036 );
1037
1038 $wgNamespacesToBeSearchedDefault = array(
1039 NS_MAIN => true,
1040 );
1041
1042 /** If set, a bold ugly notice will show up at the top of every page. */
1043 $wgSiteNotice = '';
1044
1045
1046 #
1047 # Images settings
1048 #
1049
1050 /** dynamic server side image resizing ("Thumbnails") */
1051 $wgUseImageResize = false;
1052
1053 /**
1054 * Resizing can be done using PHP's internal image libraries or using
1055 * ImageMagick. The later supports more file formats than PHP, which only
1056 * supports PNG, GIF, JPG, XBM and WBMP.
1057 *
1058 * Use Image Magick instead of PHP builtin functions.
1059 */
1060 $wgUseImageMagick = false;
1061 /** The convert command shipped with ImageMagick */
1062 $wgImageMagickConvertCommand = '/usr/bin/convert';
1063
1064 # Scalable Vector Graphics (SVG) may be uploaded as images.
1065 # Since SVG support is not yet standard in browsers, it is
1066 # necessary to rasterize SVGs to PNG as a fallback format.
1067 #
1068 # An external program is required to perform this conversion:
1069 $wgSVGConverters = array(
1070 'ImageMagick' => '$path/convert -background white -geometry $width $input $output',
1071 'sodipodi' => '$path/sodipodi -z -w $width -f $input -e $output',
1072 'inkscape' => '$path/inkscape -z -w $width -f $input -e $output',
1073 'batik' => 'java -Djava.awt.headless=true -jar $path/batik-rasterizer.jar -w $width -d $output $input',
1074 );
1075 /** Pick one of the above */
1076 $wgSVGConverter = 'ImageMagick';
1077 /** If not in the executable PATH, specify */
1078 $wgSVGConverterPath = '';
1079
1080 /** Set $wgCommandLineMode if it's not set already, to avoid notices */
1081 if( !isset( $wgCommandLineMode ) ) {
1082 $wgCommandLineMode = false;
1083 }
1084
1085
1086 #
1087 # Recent changes settings
1088 #
1089
1090 /** Log IP addresses in the recentchanges table */
1091 $wgPutIPinRC = false;
1092
1093 /**
1094 * Recentchanges items are periodically purged; entries older than this many
1095 * seconds will go.
1096 * For one week : 7 * 24 * 3600
1097 */
1098 $wgRCMaxAge = 7 * 24 * 3600;
1099
1100
1101 # Send RC updates via UDP
1102 $wgRC2UDPAddress = false;
1103 $wgRC2UDPPort = false;
1104 $wgRC2UDPPrefix = '';
1105
1106 #
1107 # Copyright and credits settings
1108 #
1109
1110 /** RDF metadata toggles */
1111 $wgEnableDublinCoreRdf = false;
1112 $wgEnableCreativeCommonsRdf = false;
1113
1114 /** Override for copyright metadata.
1115 * TODO: these options need documentation
1116 */
1117 $wgRightsPage = NULL;
1118 $wgRightsUrl = NULL;
1119 $wgRightsText = NULL;
1120 $wgRightsIcon = NULL;
1121
1122 /** Set this to some HTML to override the rights icon with an arbitrary logo */
1123 $wgCopyrightIcon = NULL;
1124
1125 /** Set this to true if you want detailed copyright information forms on Upload. */
1126 $wgUseCopyrightUpload = false;
1127
1128 /** Set this to false if you want to disable checking that detailed copyright
1129 * information values are not empty. */
1130 $wgCheckCopyrightUpload = true;
1131
1132 /**
1133 * Set this to the number of authors that you want to be credited below an
1134 * article text. Set it to zero to hide the attribution block, and a negative
1135 * number (like -1) to show all authors. Note that this will require 2-3 extra
1136 * database hits, which can have a not insignificant impact on performance for
1137 * large wikis.
1138 */
1139 $wgMaxCredits = 0;
1140
1141 /** If there are more than $wgMaxCredits authors, show $wgMaxCredits of them.
1142 * Otherwise, link to a separate credits page. */
1143 $wgShowCreditsIfMax = true;
1144
1145
1146
1147 /**
1148 * Set this to false to avoid forcing the first letter of links to capitals.
1149 * WARNING: may break links! This makes links COMPLETELY case-sensitive. Links
1150 * appearing with a capital at the beginning of a sentence will *not* go to the
1151 * same place as links in the middle of a sentence using a lowercase initial.
1152 */
1153 $wgCapitalLinks = true;
1154
1155 /**
1156 * List of interwiki prefixes for wikis we'll accept as sources for
1157 * Special:Import (for sysops). Since complete page history can be imported,
1158 * these should be 'trusted'.
1159 *
1160 * If a user has the 'import' permission but not the 'importupload' permission,
1161 * they will only be able to run imports through this transwiki interface.
1162 */
1163 $wgImportSources = array();
1164
1165
1166
1167 /** Text matching this regular expression will be recognised as spam
1168 * See http://en.wikipedia.org/wiki/Regular_expression */
1169 $wgSpamRegex = false;
1170 /** Similarly if this function returns true */
1171 $wgFilterCallback = false;
1172
1173 /** Go button goes straight to the edit screen if the article doesn't exist. */
1174 $wgGoToEdit = false;
1175
1176 /** Allow limited user-specified HTML in wiki pages?
1177 * It will be run through a whitelist for security. Set this to false if you
1178 * want wiki pages to consist only of wiki markup. Note that replacements do not
1179 * yet exist for all HTML constructs.*/
1180 $wgUserHtml = true;
1181
1182 /** Allow raw, unchecked HTML in <html>...</html> sections.
1183 * THIS IS VERY DANGEROUS on a publically editable site, so USE wgGroupPermissions
1184 * TO RESTRICT EDITING to only those that you trust
1185 */
1186 $wgRawHtml = false;
1187
1188 /**
1189 * $wgUseTidy: use tidy to make sure HTML output is sane.
1190 * This should only be enabled if $wgUserHtml is true.
1191 * tidy is a free tool that fixes broken HTML.
1192 * See http://www.w3.org/People/Raggett/tidy/
1193 * $wgTidyBin should be set to the path of the binary and
1194 * $wgTidyConf to the path of the configuration file.
1195 * $wgTidyOpts can include any number of parameters.
1196 *
1197 * $wgTidyInternal controls the use of the PECL extension to use an in-
1198 * process tidy library instead of spawning a separate program.
1199 * Normally you shouldn't need to override the setting except for
1200 * debugging. To install, use 'pear install tidy' and add a line
1201 * 'extension=tidy.so' to php.ini.
1202 */
1203 $wgUseTidy = false;
1204 $wgTidyBin = 'tidy';
1205 $wgTidyConf = $IP.'/extensions/tidy/tidy.conf';
1206 $wgTidyOpts = '';
1207 $wgTidyInternal = function_exists( 'tidy_load_config' );
1208
1209 /** See list of skins and their symbolic names in languages/Language.php */
1210 $wgDefaultSkin = 'monobook';
1211
1212 /**
1213 * Settings added to this array will override the language globals for the user
1214 * preferences used by anonymous visitors and newly created accounts. (See names
1215 * and sample values in languages/Language.php)
1216 * For instance, to disable section editing links:
1217 * $wgDefaultUserOptions ['editsection'] = 0;
1218 *
1219 */
1220 $wgDefaultUserOptions = array();
1221
1222 /** Whether or not to allow and use real name fields. Defaults to true. */
1223 $wgAllowRealName = true;
1224
1225 /** Use XML parser? */
1226 $wgUseXMLparser = false ;
1227
1228 /** Extensions */
1229 $wgSkinExtensionFunctions = array();
1230 $wgExtensionFunctions = array();
1231 /**
1232 * An array of extension types and inside that their names, versions, authors
1233 * and urls, note that the version and url key can be omitted.
1234 *
1235 * <code>
1236 * $wgExtensionCredits[$type][] = array(
1237 * 'name' => 'Example extension',
1238 * 'version' => 1.9,
1239 * 'author' => 'Foo Barstein',
1240 * 'url' => 'http://wwww.example.com/Example%20Extension/',
1241 * );
1242 * </code>
1243 *
1244 * Where $type is 'specialpage', 'parserhook', or 'other'.
1245 */
1246 $wgExtensionCredits = array();
1247
1248 /**
1249 * Allow user Javascript page?
1250 * This enables a lot of neat customizations, but may
1251 * increase security risk to users and server load.
1252 */
1253 $wgAllowUserJs = false;
1254
1255 /**
1256 * Allow user Cascading Style Sheets (CSS)?
1257 * This enables a lot of neat customizations, but may
1258 * increase security risk to users and server load.
1259 */
1260 $wgAllowUserCss = false;
1261
1262 /** Use the site's Javascript page? */
1263 $wgUseSiteJs = true;
1264
1265 /** Use the site's Cascading Style Sheets (CSS)? */
1266 $wgUseSiteCss = true;
1267
1268 /** Filter for Special:Randompage. Part of a WHERE clause */
1269 $wgExtraRandompageSQL = false;
1270
1271 /** Allow the "info" action, very inefficient at the moment */
1272 $wgAllowPageInfo = false;
1273
1274 /** Maximum indent level of toc. */
1275 $wgMaxTocLevel = 999;
1276
1277 /** Use external C++ diff engine (module wikidiff from the extensions package) */
1278 $wgUseExternalDiffEngine = false;
1279
1280 /** Use RC Patrolling to check for vandalism */
1281 $wgUseRCPatrol = true;
1282
1283 /** Set maximum number of results to return in syndication feeds (RSS, Atom) for
1284 * eg Recentchanges, Newpages. */
1285 $wgFeedLimit = 50;
1286
1287 /** _Minimum_ timeout for cached Recentchanges feed, in seconds.
1288 * A cached version will continue to be served out even if changes
1289 * are made, until this many seconds runs out since the last render. */
1290 $wgFeedCacheTimeout = 60;
1291
1292 /** When generating Recentchanges RSS/Atom feed, diffs will not be generated for
1293 * pages larger than this size. */
1294 $wgFeedDiffCutoff = 32768;
1295
1296
1297 /**
1298 * Additional namespaces. If the namespaces defined in Language.php and
1299 * Namespace.php are insufficient, you can create new ones here, for example,
1300 * to import Help files in other languages.
1301 * PLEASE NOTE: Once you delete a namespace, the pages in that namespace will
1302 * no longer be accessible. If you rename it, then you can access them through
1303 * the new namespace name.
1304 *
1305 * Custom namespaces should start at 100 to avoid conflicting with standard
1306 * namespaces, and should always follow the even/odd main/talk pattern.
1307 */
1308 #$wgExtraNamespaces =
1309 # array(100 => "Hilfe",
1310 # 101 => "Hilfe_Diskussion",
1311 # 102 => "Aide",
1312 # 103 => "Discussion_Aide"
1313 # );
1314 $wgExtraNamespaces = NULL;
1315
1316 /**
1317 * Limit images on image description pages to a user-selectable limit. In order
1318 * to reduce disk usage, limits can only be selected from a list. This is the
1319 * list of settings the user can choose from:
1320 */
1321 $wgImageLimits = array (
1322 array(320,240),
1323 array(640,480),
1324 array(800,600),
1325 array(1024,768),
1326 array(1280,1024),
1327 array(10000,10000) );
1328
1329 /**
1330 * Adjust thumbnails on image pages according to a user setting. In order to
1331 * reduce disk usage, the values can only be selected from a list. This is the
1332 * list of settings the user can choose from:
1333 */
1334 $wgThumbLimits = array(
1335 120,
1336 150,
1337 180,
1338 200,
1339 250,
1340 300
1341 );
1342
1343 /**
1344 * On category pages, show thumbnail gallery for images belonging to that
1345 * category instead of listing them as articles.
1346 */
1347 $wgCategoryMagicGallery = true;
1348
1349 /**
1350 * Browser Blacklist for unicode non compliant browsers
1351 * Contains a list of regexps : "/regexp/" matching problematic browsers
1352 */
1353 $wgBrowserBlackList = array(
1354 "/Mozilla\/4\.78 \[en\] \(X11; U; Linux/",
1355 /**
1356 * MSIE on Mac OS 9 is teh sux0r, converts þ to <thorn>, ð to <eth>, Þ to <THORN> and Ð to <ETH>
1357 *
1358 * Known useragents:
1359 * - Mozilla/4.0 (compatible; MSIE 5.0; Mac_PowerPC)
1360 * - Mozilla/4.0 (compatible; MSIE 5.15; Mac_PowerPC)
1361 * - Mozilla/4.0 (compatible; MSIE 5.23; Mac_PowerPC)
1362 * - [...]
1363 *
1364 * @link http://en.wikipedia.org/w/index.php?title=User%3A%C6var_Arnfj%F6r%F0_Bjarmason%2Ftestme&diff=12356041&oldid=12355864
1365 * @link http://en.wikipedia.org/wiki/Template%3AOS9
1366 */
1367 "/Mozilla\/4\.0 \(compatible; MSIE \d+\.\d+; Mac_PowerPC\)/"
1368 );
1369
1370 /**
1371 * Fake out the timezone that the server thinks it's in. This will be used for
1372 * date display and not for what's stored in the DB. Leave to null to retain
1373 * your server's OS-based timezone value. This is the same as the timezone.
1374 */
1375 # $wgLocaltimezone = 'GMT';
1376 # $wgLocaltimezone = 'PST8PDT';
1377 # $wgLocaltimezone = 'Europe/Sweden';
1378 # $wgLocaltimezone = 'CET';
1379 $wgLocaltimezone = null;
1380
1381
1382 /**
1383 * When translating messages with wfMsg(), it is not always clear what should be
1384 * considered UI messages and what shoud be content messages.
1385 *
1386 * For example, for regular wikipedia site like en, there should be only one
1387 * 'mainpage', therefore when getting the link of 'mainpage', we should treate
1388 * it as content of the site and call wfMsgForContent(), while for rendering the
1389 * text of the link, we call wfMsg(). The code in default behaves this way.
1390 * However, sites like common do offer different versions of 'mainpage' and the
1391 * like for different languages. This array provides a way to override the
1392 * default behavior. For example, to allow language specific mainpage and
1393 * community portal, set
1394 *
1395 * $wgForceUIMsgAsContentMsg = array( 'mainpage', 'portal-url' );
1396 */
1397 $wgForceUIMsgAsContentMsg = array();
1398
1399
1400 /**
1401 * Authentication plugin.
1402 */
1403 $wgAuth = null;
1404
1405 /**
1406 * Global list of hooks.
1407 * Add a hook by doing:
1408 * $wgHooks['event_name'][] = $function;
1409 * or:
1410 * $wgHooks['event_name'][] = array($function, $data);
1411 * or:
1412 * $wgHooks['event_name'][] = array($object, 'method');
1413 */
1414 $wgHooks = array();
1415
1416 /**
1417 * Experimental preview feature to fetch rendered text
1418 * over an XMLHttpRequest from JavaScript instead of
1419 * forcing a submit and reload of the whole page.
1420 * Leave disabled unless you're testing it.
1421 */
1422 $wgLivePreview = false;
1423
1424 /**
1425 * Disable the internal MySQL-based search, to allow it to be
1426 * implemented by an extension instead.
1427 */
1428 $wgDisableInternalSearch = false;
1429
1430 /**
1431 * Set this to a URL to forward search requests to some external location.
1432 * If the URL includes '$1', this will be replaced with the URL-encoded
1433 * search term.
1434 *
1435 * For example, to forward to Google you'd have something like:
1436 * $wgSearchForwardUrl = 'http://www.google.com/search?q=$1' .
1437 * '&domains=http://example.com' .
1438 * '&sitesearch=http://example.com' .
1439 * '&ie=utf-8&oe=utf-8';
1440 */
1441 $wgSearchForwardUrl = null;
1442
1443 /**
1444 * If true, external URL links in wiki text will be given the
1445 * rel="nofollow" attribute as a hint to search engines that
1446 * they should not be followed for ranking purposes as they
1447 * are user-supplied and thus subject to spamming.
1448 */
1449 $wgNoFollowLinks = true;
1450
1451 /**
1452 * Specifies the minimal length of a user password. If set to
1453 * 0, empty passwords are allowed.
1454 */
1455 $wgMinimalPasswordLength = 0;
1456
1457 /**
1458 * Activate external editor interface for files and pages
1459 * See http://meta.wikimedia.org/wiki/Help:External_editors
1460 */
1461 $wgUseExternalEditor = true;
1462
1463 /** Whether or not to sort special pages in Special:Specialpages */
1464
1465 $wgSortSpecialPages = true;
1466
1467 /**
1468 * Specify the name of a skin that should not be presented in the
1469 * list of available skins.
1470 * Use for blacklisting a skin which you do not want to remove
1471 * from the .../skins/ directory
1472 */
1473 $wgSkipSkin = '';
1474 $wgSkipSkins = array(); # More of the same
1475
1476 /**
1477 * Array of disabled article actions, e.g. view, edit, dublincore, delete, etc.
1478 */
1479 $wgDisabledActions = array();
1480
1481 /**
1482 * Disable redirects to special pages and interwiki redirects, which use a 302 and have no "redirected from" link
1483 */
1484 $wgDisableHardRedirects = false;
1485
1486 /**
1487 * Use http.dnsbl.sorbs.net to check for open proxies
1488 */
1489 $wgEnableSorbs = false;
1490
1491 /**
1492 * Use opm.blitzed.org to check for open proxies.
1493 * Not yet actually used.
1494 */
1495 $wgEnableOpm = false;
1496
1497 /**
1498 * Proxy whitelist, list of addresses that are assumed to be non-proxy despite what the other
1499 * methods might say
1500 */
1501 $wgProxyWhitelist = array();
1502
1503 /**
1504 * Simple rate limiter options to brake edit floods.
1505 * Maximum number actions allowed in the given number of seconds;
1506 * after that the violating client receives HTTP 500 error pages
1507 * until the period elapses.
1508 *
1509 * array( 4, 60 ) for a maximum of 4 hits in 60 seconds.
1510 *
1511 * This option set is experimental and likely to change.
1512 * Requires memcached.
1513 */
1514 $wgRateLimits = array(
1515 'edit' => array(
1516 'anon' => null, // for any and all anonymous edits (aggregate)
1517 'user' => null, // for each logged-in user
1518 'newbie' => null, // for each recent account; overrides 'user'
1519 'ip' => null, // for each anon and recent account
1520 'subnet' => null, // ... with final octet removed
1521 ),
1522 'move' => array(
1523 'user' => null,
1524 'newbie' => null,
1525 'ip' => null,
1526 'subnet' => null,
1527 ),
1528 );
1529
1530 /**
1531 * Set to a filename to log rate limiter hits.
1532 */
1533 $wgRateLimitLog = null;
1534
1535 /**
1536 * On Special:Unusedimages, consider images "used", if they are put
1537 * into a category. Default (false) is not to count those as used.
1538 */
1539 $wgCountCategorizedImagesAsUsed = false;
1540
1541 /**
1542 * External stores allow including content
1543 * from non database sources following URL links
1544 *
1545 * Short names of ExternalStore classes may be specified in an array here:
1546 * $wgExternalStores = array("http","file","custom")...
1547 *
1548 * CAUTION: Access to database might lead to code execution
1549 */
1550 $wgExternalStores = false;
1551
1552 /**
1553 * list of trusted media-types and mime types.
1554 * Use the MEDIATYPE_xxx constants to represent media types.
1555 * This list is used by Image::isSafeFile
1556 *
1557 * Types not listed here will have a warning about unsafe content
1558 * displayed on the images description page. It would also be possible
1559 * to use this for further restrictions, like disabling direct
1560 * [[media:...]] links for non-trusted formats.
1561 */
1562 $wgTrustedMediaFormats= array(
1563 MEDIATYPE_BITMAP, //all bitmap formats
1564 MEDIATYPE_AUDIO, //all audio formats
1565 MEDIATYPE_VIDEO, //all plain video formats
1566 "image/svg", //svg (only needed if inline rendering of svg is not supported)
1567 "application/pdf", //PDF files
1568 #"application/x-shockwafe-flash", //flash/shockwave movie
1569 );
1570
1571 /**
1572 * Allow special page inclusions such as {{Special:Allpages}}
1573 */
1574 $wgAllowSpecialInclusion = true;
1575
1576 /**
1577 * Timeout for HTTP requests done via CURL
1578 */
1579 $wgHTTPTimeout = 3;
1580
1581 /**
1582 * Proxy to use for CURL requests.
1583 */
1584 $wgHTTPProxy = false;
1585
1586 /**
1587 * Enable interwiki transcluding. Only when iw_trans=1.
1588 */
1589 $wgEnableScaryTranscluding = false;
1590
1591 ?>