-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_sample.php
24 lines (20 loc) · 1.01 KB
/
config_sample.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
<?php
// rename this file to config.php
/*
optional add an .htaccess to further restrict access
<Files "config.php">
Order allow,deny
Deny from all
</Files>
*/
if (!defined('DB_HOST')) define('DB_HOST' , 'localhost');
if (!defined('DB_NAME')) define('DB_NAME' , 'your_database_name');
if (!defined('DB_USER')) define('DB_USER' , 'your_username');
if (!defined('DB_PASS')) define('DB_PASS' , 'your_password');
if (!defined('PASSWORD')) define('PASSWORD' , 'YourSecurePassword'); //Used for access to the Admin pages
if (!defined('TZ_OFFSET')) define('TZ_OFFSET','+12:00'); //If you need to change timezones
if (!defined('IS_DEMO')) define('IS_DEMO' , false);
if (!defined('REFRESH')) define('REFRESH' , 30000); // 30000 = 30 seconds this is how often the main page will auto refresh
if (!defined('RANDORDER')) define('RANDORDER', true); // Randomize the order of the locker items on the check page
if (!defined('DEBUG')) define('DEBUG' , false); // Set to true to enable debugging
?>