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