-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathServerSettings.php
35 lines (26 loc) · 1.01 KB
/
ServerSettings.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
// MediaWiki4Intranet configuration base for internal UNIX installations
// (c) Stas Fomin, Vitaliy Filippov 2008-2011
require_once(dirname(__FILE__).'/BaseSettings.php');
$wgPageShowWatchingUsers = true;
$wgEnableEmail = true;
$wgEnableUserEmail = true;
$wgEnotifUserTalk = true; // UPO
$wgEnotifWatchlist = true; // UPO
$wgEmailAuthentication = true;
$wgEnotifMinorEdits = true;
// Bug 57350 - PDF and Djvu (UNIX only)
require_once($IP.'/extensions/PdfHandler/PdfHandler.php');
$wgDjvuDump = "djvudump";
$wgDjvuRenderer = "ddjvu";
$wgDjvuTxt = "djvutxt";
$wgDjvuPostProcessor = "ppmtojpeg";
$wgDjvuOutputExtension = 'jpg';
$wgPdfToCairo = 'nice -n 20 pdftocairo';
$wgPdftoText = ''; // it's useless, disable
$wgPdfCreateThumbnailsInJobQueue = true;
$wgDiff3 = '/usr/bin/diff3';
// Bug 82496 - enable scary (cross-wiki) transclusions
$wgEnableScaryTranscluding = true;
// Bug 107222 - TikaMW. TODO: enable also on Windows along with Sphinx
require_once($IP.'/extensions/TikaMW/TikaMW.php');