This repository has been archived by the owner on Jun 1, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmpv_config.php
57 lines (44 loc) · 1.64 KB
/
mpv_config.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
/**
* Config file
*
* @package mpv_server
* @version $Id$
* @copyright (c) 2010 phpBB Group
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
*
*/
// Measure the amount of time MPV takes to process zip package
$starttime = explode(' ', microtime());
$starttime = $starttime[1] + $starttime[0];
// Server ID. Can be any number.
define('SERVER_ID', 1);
// If you don't want to connect to phpbb.com to get the xsd then set this to true
// and copy the xsd(s) to the root/includes/xsd directory of your MPV copy
define('LOCAL_ONLY', false);
// Return with HTML formatting or not
// Useful if displaying through forum
// Third parameter allows for overriding
define('HTML_FORMAT', true, true);
// Sometimes we want HTML formatting without the HTML headers
define('HTML_HEADERS', false);
// Latest phpBB3 version. Only used if LOCAL_ONLY is set to true
define('PHPBB_VERSION', '3.0.11');
// Latest MODX version. Only used if LOCAL_ONLY is set to true
define('LATEST_MODX', '1.2.6');
// Latest UMIL version. Only used if LOCAL_ONLY is set to true
define('LATEST_UMIL', '1.0.5');
// MPV Debug, disabled by default, will add some extra info about the MPV status
define('MPV_DEBUG', false);
// MPV language, by default english. Any possiblities from includes/languages/ is allowed.
// Use the _exact_ directory name
define('MPV_LANG', 'en');
// Files that generate a warning, and that _arent_ checked.
// Seperate with |
define('UNWANTED', '__macosx|.ds_store|thumbs.db|.svn|.git|.project');
// This is for statistics gathering
// Format is: 'tag' => array('properties')
$statistics = array(
'meta' => array('name', 'content'),
);
?>