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