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
487 B
35 lines
487 B
<?php
|
|
// database host
|
|
$db_host = "localhost:3306";
|
|
|
|
// database name
|
|
$db_name = "shop";
|
|
|
|
// database username
|
|
$db_user = "root";
|
|
|
|
// database password
|
|
$db_pass = "123456";
|
|
|
|
// 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', '2023-04-23 15:13:24');
|
|
|
|
?>
|