forked from BrightGamePanel/bgpanel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration.php
72 lines (59 loc) · 1.73 KB
/
configuration.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
//*************************************************************************************************
### REQUIRED SETTINGS ###
// <DO NOT CHANGE>
define('LICENSE', 'GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007');
// </DO NOT CHANGE>
// DBHOST is the MySQL Database Hostname
// Default: "localhost"
define('DBHOST', 'localhost');
// DBNAME is the MySQL Database Name
define('DBNAME', 'brightgamepanel');
// DBUSER is the MySQL Database Username
define('DBUSER', 'root');
// DBPASSWORD is the MySQL Database Password
define('DBPASSWORD', '');
// DBPREFIX is the MySQL Table Prefix
define('DBPREFIX', 'bgp_');
/**
* CRON Configuration
* Sets the period (in seconds) between two crons
*/
define('CRONDELAY', 600); // Default: "600"
/**
* DATE Configuration
* Sets the default timezone used by all date/time functions
* @link: http://php.net/manual/en/timezones.php
*/
date_default_timezone_set('Europe/London'); // Default: "Europe/London"
/**
* LOCALE Configuration
*
* Sets the default language
*
* en_EN => English
* es_ES => Spanish
* fr_FR => French
* nl_NL => Dutch
* pl_PL => Polish
* ru_RU => Russian
*/
// <DO NOT CHANGE>
define('PROJECT_DIR', realpath(dirname(__FILE__)));
define('LOCALE_DIR', PROJECT_DIR . '/locale');
// </DO NOT CHANGE>
define('DEFAULT_LOCALE', 'en_EN'); // Default: "en_EN"
/**
* ERROR Handling
* Sets which PHP errors are reported
* @link: http://php.net/manual/en/function.error-reporting.php
*
* Turn off all error reporting:
* error_reporting(0);
*
* Report all PHP errors:
* error_reporting(E_ALL);
*/
error_reporting(E_ALL);
//*************************************************************************************************
?>