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
1014 B

3 years ago
<?php
/* д */
@ini_set('display_errors', 1);
error_reporting(E_ALL ^ E_NOTICE);
/* к????? */
clearstatcache();
/* ? */
define('ROOT_PATH', str_replace('install/includes/auto_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 sc_error('message.dwt');
/* ?? */
require(ROOT_PATH . 'install/includes/cls_template.php');
$smarty = new template(ROOT_PATH . 'install/templates/');
require(ROOT_PATH . 'install/includes/lib_auto_installer.php');
/* HTTP???UTF8 */
header('Content-type: text/html; charset='.EC_CHARSET);
@set_time_limit(360);
3 years ago
?>