forked from gitslagga/currency
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.php
55 lines (44 loc) · 1.42 KB
/
server.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
<?php
// 定义系统编码
header("Content-Type: text/html;charset=utf-8");
// 定义应用路径
define('APP_PATH', './Application/');
// 定义缓存路径
define('RUNTIME_PATH', './Runtime/');
// 定义备份路径
define('DATABASE_PATH', './Database/');
// 定义钱包路径
define('COIN_PATH', './Coin/');
// 定义备份路径
define('UPLOAD_PATH', './Upload/');
// 定义数据库类型
define('DB_TYPE', 'mysql');
// 定义数据库地址
define('DB_HOST', '127.0.0.1');
// 定义数据库名
define('DB_NAME', 'btc9');
// 定义数据库账号
define('DB_USER', 'root');
// 定义数据库密码
define('DB_PWD', 'root');
// 定义数据库端口
define('DB_PORT', '3306');
// 开启演示模式
define('APP_DEMO',0);
// 短信模式 0是演示模式 1是正式模式
define('MOBILE_CODE',0);
// 调试模式设置为1 不要更改
define('M_DEBUG', 1);
// 数据缓存模式
define('QQ3479015851_DEBUG', 1);
//启用手机号码为全站唯一
define('M_ONLY',1);
// 定义手机端网址
define('WAP_URL', '');
// 后台安全入口
define('ADMIN_KEY', 'qq3479015851');
//定义授权码
//define('MSCODE', '95D3A7E98EE9F913B462B87C73DS');
define('DIR_SECURE_CONTENT', 'deny Access!');
// 引入入口文件
require './ThinkPHP/qq3479015851.php';