Revision 1, 1.2 KB
(checked in by andrewgunn, 16 years ago)
|
Added original EVE-Killboard.net source code.
|
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 | // corporation or alliance id |
---|
8 | define( CORP_ID, 5612 ); |
---|
9 | define( ALLIANCE_ID, 0 ); |
---|
10 | |
---|
11 | // admin password |
---|
12 | define( ADMIN_PASSWORD, "adminpw" ); |
---|
13 | |
---|
14 | define( KB_PROFILE, 0 ); |
---|
15 | |
---|
16 | // page cache |
---|
17 | define( KB_CACHE, 0 ); |
---|
18 | define( KB_CACHEDIR, "../../cache" ); |
---|
19 | $cacheignore = array( "home", |
---|
20 | "pilot_detail", |
---|
21 | "kill_detail", |
---|
22 | "admin", |
---|
23 | "admin_cc", |
---|
24 | "admin_rental", |
---|
25 | "igb", |
---|
26 | "post_igb", |
---|
27 | "portrait_grab" ); |
---|
28 | |
---|
29 | $cachetimes = array ( "awards" => 1440, |
---|
30 | "campaigns" => 30, |
---|
31 | "contracts" => 30, |
---|
32 | "corp_detail" => 60, |
---|
33 | "alliance_detail" => 240 ); |
---|
34 | |
---|
35 | define( STYLE_URL, "http://kb.yourcorp.com/style" ); |
---|
36 | define( COMMON_URL, "http://kb.yourcorp.com/common" ); |
---|
37 | define( IMG_URL, "http://kb.yourcorp.com/img" ); |
---|
38 | |
---|
39 | // database config |
---|
40 | define( DB_HOST, "localhost" ); |
---|
41 | define( DB_NAME, "kb" ); |
---|
42 | define( DB_USER, "dbuser" ); |
---|
43 | define( DB_PASS, "dbpass" ); |
---|
44 | ?> |
---|