Revision 64, 1.3 KB
(checked in by andrewgunn, 16 years ago)
|
A few minor fixes, I made the banner into a link (if you set it in the config) and increased all awards boxes to show 10 people.
|
Line | |
---|
1 | <? |
---|
2 | // general config |
---|
3 | define( KB_TITLE, "Your killboard" ); |
---|
4 | define( KB_HOST, "kb.yourcorp.com" ); |
---|
5 | define( KB_SITE, "yourkb" ); |
---|
6 | |
---|
7 | // Main website, leave blank if killboard is by itself |
---|
8 | define( MAIN_SITE, ""); |
---|
9 | |
---|
10 | // corporation or alliance id |
---|
11 | define( CORP_ID, 5612 ); |
---|
12 | define( ALLIANCE_ID, 0 ); |
---|
13 | |
---|
14 | // admin password |
---|
15 | define( ADMIN_PASSWORD, "adminpw" ); |
---|
16 | |
---|
17 | define( KB_PROFILE, 0 ); |
---|
18 | |
---|
19 | // page cache |
---|
20 | define( KB_CACHE, 0 ); |
---|
21 | define( KB_CACHEDIR, "../../cache" ); |
---|
22 | $cacheignore = array( "home", |
---|
23 | "pilot_detail", |
---|
24 | "kill_detail", |
---|
25 | "admin", |
---|
26 | "admin_cc", |
---|
27 | "admin_rental", |
---|
28 | "igb", |
---|
29 | "post_igb", |
---|
30 | "portrait_grab" ); |
---|
31 | |
---|
32 | $cachetimes = array ( "awards" => 1440, |
---|
33 | "campaigns" => 30, |
---|
34 | "contracts" => 30, |
---|
35 | "corp_detail" => 60, |
---|
36 | "alliance_detail" => 240 ); |
---|
37 | |
---|
38 | define( STYLE_URL, "http://kb.yourcorp.com/style" ); |
---|
39 | define( COMMON_URL, "http://kb.yourcorp.com/common" ); |
---|
40 | define( IMG_URL, "http://kb.yourcorp.com/img" ); |
---|
41 | |
---|
42 | // database config |
---|
43 | define( DB_HOST, "localhost" ); |
---|
44 | define( DB_NAME, "kb" ); |
---|
45 | define( DB_USER, "dbuser" ); |
---|
46 | define( DB_PASS, "dbpass" ); |
---|
47 | ?> |
---|