You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
491 B
35 lines
491 B
<?php
|
|
// database host
|
|
$db_host = "localhost:3306";
|
|
|
|
// database name
|
|
$db_name = "dsc_online";
|
|
|
|
// database username
|
|
$db_user = "root";
|
|
|
|
// database password
|
|
$db_pass = "root";
|
|
|
|
// table prefix
|
|
$prefix = "dsc_";
|
|
|
|
$timezone = "PRC";
|
|
|
|
$cookie_path = "/";
|
|
|
|
$cookie_domain = "";
|
|
|
|
$session = "1440";
|
|
|
|
define('EC_CHARSET','utf-8');
|
|
|
|
define('ADMIN_PATH','admin');
|
|
|
|
define('AUTH_KEY', 'this is a key');
|
|
|
|
define('OLD_AUTH_KEY', '');
|
|
|
|
define('API_TIME', '2016-06-21 13:03:41');
|
|
|
|
?>
|