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.
36 lines
498 B
36 lines
498 B
<?php
|
|
// database host
|
|
$db_host = "localhost:3306";
|
|
|
|
// database name
|
|
$db_name = "shop_h888_fun";
|
|
|
|
// database username
|
|
$db_user = "root";
|
|
|
|
// database password
|
|
$db_pass = "way6142";
|
|
|
|
// table prefix
|
|
$prefix = "ecs_";
|
|
|
|
$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', '2022-12-03 22:26:23');
|
|
|
|
?>
|