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.
45 lines
1.1 KiB
45 lines
1.1 KiB
<?php
|
|
|
|
/* 报告所有错误 */
|
|
@ini_set('display_errors', 1);
|
|
error_reporting(E_ALL ^ E_NOTICE);
|
|
|
|
/* 清除所有和文件操作相关的状态信息 */
|
|
clearstatcache();
|
|
|
|
/* 定义站点根 */
|
|
define('ROOT_PATH', str_replace('install/includes/init.php', '', str_replace('\\', '/', __FILE__)));
|
|
|
|
if (isset($_SERVER['PHP_SELF']))
|
|
{
|
|
define('PHP_SELF', $_SERVER['PHP_SELF']);
|
|
}
|
|
else
|
|
{
|
|
define('PHP_SELF', $_SERVER['SCRIPT_NAME']);
|
|
}
|
|
|
|
/* 定义版本的编码 */
|
|
define('EC_CHARSET','utf-8');
|
|
define('EC_DB_CHARSET','utf8');
|
|
|
|
require(ROOT_PATH . 'includes/lib_base.php');
|
|
require(ROOT_PATH . 'includes/lib_common.php');
|
|
require(ROOT_PATH . 'includes/lib_time.php');
|
|
|
|
/* 创建错误处理对象 */
|
|
require(ROOT_PATH . 'includes/cls_error.php');
|
|
$err = new ecs_error('message.dwt');
|
|
|
|
/* 初始化模板引擎 */
|
|
require(ROOT_PATH . 'install/includes/cls_template.php');
|
|
$smarty = new template(ROOT_PATH . 'install/templates/');
|
|
|
|
require(ROOT_PATH . 'install/includes/lib_installer.php');
|
|
|
|
/* 发送HTTP头部,保证浏览器识别UTF8编码 */
|
|
header('Content-type: text/html; charset='.EC_CHARSET);
|
|
|
|
@set_time_limit(360);
|
|
|
|
?>
|