-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
30 lines (20 loc) · 889 Bytes
/
Copy pathconfig.php
File metadata and controls
30 lines (20 loc) · 889 Bytes
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
<?php
error_reporting(E_ALL ^ E_NOTICE);
#--[ MYSQL CONFIG ]-------------------------------------------
// do not change this line
$GLOBALS['eveonline']['db']['driver'] = 'mysql';
#--[ YOU MUST modify this section with DB params ]--
$db_user = 'root';
$db_passwd = '';
$db_name = 'eveonline_db';
$db_host = 'localhost';
$GLOBALS['eveonline']['db']['hostname'] = $db_host;
$GLOBALS['eveonline']['db']['dbname'] = $db_name;
$GLOBALS['eveonline']['db']['username'] = $db_user;
$GLOBALS['eveonline']['db']['password'] = $db_passwd;
#--[ visit eve online developers portal ]------------------------------------
#--[ needs multiple user solution over web-friendly environments ]-----------
$GLOBALS['eveonline']['db']['base64'] = "< base64 encoded secret >";
$GLOBALS['eveonline']['db']['id'] = "< your client id >";
$table_prefix = '';
?>