-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathconfig.inc.php
101 lines (67 loc) · 4.22 KB
/
config.inc.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?php
//以下内容在游戏安装时初始化,不能通过游戏后台修改
// [EN] Set below parameters according to your account information provided by your hosting
// [CH] 以下变量请根据空间商提供的账号参数修?如有疑问,请联系服务器提供?
$dbhost = 'localhost'; // database server
// 数据库服务器
$dbuser = 'root'; // database username
// 数据库用户名
$dbpw = ''; // database password
// 数据库密?
$dbname = 'acdts3'; // database name
// 数据库名
$dbreport = 1; // send db error report? 1=yes
// 是否发送数据库错误报告? 0=? 1=?
// [EN] If you have problems logging in Discuz!, then modify the following parameters, else please leave default
// [CH] 如您?cookie 作用范围有特殊要?或游戏登录不正常,请修改下面变?否则请保持默?
$cookiedomain = ''; // cookie domain
// cookie 作用?
$cookiepath = '/'; // cookie path
// cookie 作用路径
// [EN] Special parameters, DO NOT modify these unless you are an expert in Discuz!
// [CH] 以下变量为特别选项,一般情况下没有必要修改
$headercharset = 0; // force outputing charset header
// 强制设置字符?只乱码时使用
$onlinehold = 900; // time span of online recording
// 在线保持时间,单位?
$pconnect = true; // persistent database connection, 0=off, 1=on
// 数据库持久连?false=关闭, true=打开
$gamefounder = 'Amarillo_NMC'; // super administrator's UID
// 游戏创始?UID, 可以支持多个创始人,之间使用 ??分隔?
// 如果不设置游戏创始人,则管理员之间可以相互编辑,具体权力差别请见游戏使用文档
$postinterval = 1; //用户提交命令的间隔时间,单位?
$moveut = 8; //set the difference of server time and client time
//如果本地时间跟服务器时间有时差,在此处更?
$moveutmin = 0; //set the difference of server time and client time, by minutes
//如果本地时间跟服务器时间有时差,在此处更?
// [EN] !ATTENTION! Do NOT modify following after your board was settle down
// [CH] 游戏投入使用后不能修改的变量
$tablepre = 'acbra3_'; // 表名前缀, 同一数据库安装多个游戏请修改此处
// table prefix, modify this when you are installingmore than 1 Discuz! in the same database.
$authkey = 'bra'; //game encrypt key ,the same of plus key
//游戏加密密钥,要与插件密钥相?
// [EN] !ATTENTION! Preservation or debugging for developing
// [CH] 切勿修改以下变量,仅供程序开发调试用!
$database = 'mysqli'; // 'mysql' for MySQL version and 'pgsql' for PostgreSQL version
// MySQL 版本请设?'mysql', PgSQL 版本请设?'pgsql'
$charset = 'utf-8'; // default character set, 'gbk', 'big5', 'utf-8' are available
// 游戏默认字符? 可?'gbk', 'big5', 'utf-8'
$dbcharset = 'utf8mb4'; // default database character set, 'gbk', 'big5', 'utf8', 'latin1' and blank are available
// MySQL 字符? 可?'gbk', 'big5', 'utf8', 'latin1', 留空为按照游戏字符集设定
$attackevasive = 0; // protect against attacks via common request, 0=off, 1=cookie refresh limitation, 2=deny proxy request, 3=both
// 防护大量正常请求造成的拒绝服务攻? 0=关闭, 1=cookie 刷新限制, 2=限制代理访问, 3=cookie+代理限制
$tplrefresh = 1; // auto check validation of templates, 0=off, 1=on
// 模板自动刷新开?0=关闭, 1=打开, 在不修改页面的情况下可以关闭
$bbsurl = 'http://76573.org/'; //the bbs url for the game plus
//安装游戏插件的论坛地址
$gameurl = 'http://localhost:8080/'; // the url of game program files,for the full-window mode
//游戏程序地址,用于全屏模?
$homepage = 'http://www.amarilloviridian.com/'; // game homepage
//官方网站地址
$title = '大 逃 杀'; //game title
//游戏标题
$errorinfo = 0; //是否开启错误信息提示,1为开启,0为关闭。开启会泄漏游戏安装路径
// 以下为salt,请勿修改。
$salt = 'a29d8868b409591398e6ccca95f968ef';
// ============================================================================
?>