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

3 years ago
<?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);
3 years ago
?>