1 | <?php |
---|
2 | |
---|
3 | /** |
---|
4 | * |
---|
5 | * License information: |
---|
6 | * This program may be distributed under the terms of this General Public License. |
---|
7 | * the whole license can be seen in gpl.txt or at http://www.gnu.org/copyleft/gpl.html |
---|
8 | * |
---|
9 | */ |
---|
10 | |
---|
11 | // general config |
---|
12 | define('KB_TITLE', '{$title}'); |
---|
13 | define('KB_HOST', '{$host}'); |
---|
14 | define('KB_SITE', '{$site}'); |
---|
15 | |
---|
16 | // Main website, leave blank if killboard is by itself |
---|
17 | define('MAIN_SITE', ''); |
---|
18 | |
---|
19 | // corporation OR alliance id |
---|
20 | define('CORP_ID', {$cid}); |
---|
21 | define('ALLIANCE_ID', {$aid}); |
---|
22 | |
---|
23 | // admin password |
---|
24 | define('ADMIN_PASSWORD', '{$adminpw}'); |
---|
25 | define('SUPERADMIN_PASSWORD', ''); |
---|
26 | |
---|
27 | // debug, shows page time generation |
---|
28 | define('KB_PROFILE', 0); |
---|
29 | |
---|
30 | // page cache |
---|
31 | define('KB_CACHE', 0); |
---|
32 | define('KB_CACHEDIR', 'cache/data'); |
---|
33 | |
---|
34 | $cacheignore = array( |
---|
35 | 'home', |
---|
36 | 'pilot_detail', |
---|
37 | 'kill_detail', |
---|
38 | 'admin', |
---|
39 | 'admin_cc', |
---|
40 | 'admin_rental', |
---|
41 | 'igb', |
---|
42 | 'post_igb', |
---|
43 | 'portrait_grab'); |
---|
44 | |
---|
45 | $cachetimes = array ( |
---|
46 | 'awards' => 1440, |
---|
47 | 'campaigns' => 30, |
---|
48 | 'contracts' => 30, |
---|
49 | 'corp_detail' => 60, |
---|
50 | 'alliance_detail' => 240); |
---|
51 | |
---|
52 | define('STYLE_URL', '{$style}'); |
---|
53 | define('COMMON_URL', '{$common}'); |
---|
54 | define('IMG_URL', '{$img}'); |
---|
55 | |
---|
56 | define('DB_HALTONERROR', true); |
---|
57 | |
---|
58 | // database config |
---|
59 | define('DB_HOST', '{$dbhost}'); |
---|
60 | define('DB_NAME', '{$db}'); |
---|
61 | define('DB_USER', '{$user}'); |
---|
62 | define('DB_PASS', '{$pass}'); |
---|
63 | |
---|
64 | // please make sure that there is no space behind ?> |
---|
65 | ?> |
---|