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