1.1. config_defaults_inc.php&config_inc.php
下述配置可以在config_defaults_inc.php中直接修改,也可以在config_inc.php中增加;
读配置时,config_inc.php中的配置优先于config_defaults_inc.php;
1.1.1. 创建用户及重置密码时是否发送邮件
config_defaults_inc.php
/**
* If ON, users will be sent their password when their account is created
* or password reset (this requires mail settings to be correctly configured).
* If OFF, then the Administrator will have to provide a password when
* creating new accounts, and the password will be set to blank when reset.
* @global int $g_send_reset_password
*/
$g_send_reset_password= ON;
=》
$g_send_reset_password= OFF;
1.1.2. 语言设置
config_defaults_inc.php
/**
* If the language is set to 'auto', the actual
* language is determined by the user agent (web browser)
* language preference.
* @global string $g_default_language
*/
$g_default_language= 'english';
=》
$g_default_language= 'chinese_simplified';