bnbweb/includes/init.php

242 lines
6.3 KiB
PHP
Raw Normal View History

2022-11-14 15:49:28 +00:00
<?php
if (!defined('IN_ECS'))
{
die('Hacking attempt');
}
error_reporting(E_ALL ^ E_NOTICE);
mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
if (__FILE__ == '')
{
die('Fatal error code: 0');
}
/* 取得当前所在的根目录 */
define('ROOT_PATH', str_replace('includes/init.php', '', str_replace('\\', '/', __FILE__)));
/* 初始化设置 */
@ini_set('memory_limit', '-1');
@ini_set('session.cache_expire', 180);
@ini_set('session.use_trans_sid', 0);
@ini_set('session.use_cookies', 1);
@ini_set('session.auto_start', 0);
@ini_set('display_errors', 1);
if (DIRECTORY_SEPARATOR == '\\')
{
@ini_set('include_path', '.;' . ROOT_PATH);
}
else
{
@ini_set('include_path', '.:' . ROOT_PATH);
}
require(ROOT_PATH . 'data/config.php');
if (defined('DEBUG_MODE') == false)
{
define('DEBUG_MODE', 0);
}
if (PHP_VERSION >= '5.1' && !empty($timezone))
{
date_default_timezone_set($timezone);
}
$php_self = isset($_SERVER['PHP_SELF']) ? $_SERVER['PHP_SELF'] : $_SERVER['SCRIPT_NAME'];
if ('/' == substr($php_self, -1))
{
$php_self .= 'index.php';
}
define('PHP_SELF', $php_self);
require(ROOT_PATH . 'includes/inc_constant.php');
require(ROOT_PATH . 'includes/cls_ecshop.php');
require(ROOT_PATH . 'includes/cls_error.php');
require(ROOT_PATH . 'includes/lib_time.php');
require(ROOT_PATH . 'includes/lib_base.php');
require(ROOT_PATH . 'includes/lib_common.php');
require(ROOT_PATH . 'includes/lib_main.php');
require(ROOT_PATH . 'includes/lib_insert.php');
/* 將轉入參數都加上quote。*/
if (!get_magic_quotes_gpc())
{
if (!empty($_GET))
{
$_GET = addslashes_deep($_GET);
}
if (!empty($_POST))
{
$_POST = addslashes_deep($_POST);
}
$_COOKIE = addslashes_deep($_COOKIE);
$_REQUEST = addslashes_deep($_REQUEST);
}
/* 创建对象 */
$ecs = new ECS($db_name, $prefix);
define('DATA_DIR', $ecs->data_dir());
define('IMAGE_DIR', $ecs->image_dir());
/* 初始化数据库类 */
require(ROOT_PATH . 'includes/cls_mysql.php');
$db = new cls_mysql($db_host, $db_user, $db_pass, $db_name);
$db->set_disable_cache_tables(array($ecs->table('sessions'), $ecs->table('sessions_data')));
$db_host = $db_user = $db_pass = $db_name = NULL;
/* 创建错误处理对象 */
$err = new ecs_error('message.dwt');
/* 载入系统参数 */
$_CFG = load_config();
/* 载入语言文件 */
require(ROOT_PATH . 'languages/' . $_CFG['lang'] . '/common.php');
require(ROOT_PATH . 'languages/' . $_CFG['lang'] . '/user_log.php');
if ($_CFG['shop_closed'] == 1 && real_ip()<>'65.60.2.244')
{
header('Content-type: text/html; charset='.EC_CHARSET);
die('<div style="margin: 150px; text-align: center; font-size: 14px"><p>' . $_LANG['shop_closed'] . '</p><p>' . $_CFG['close_comment'] . '</p></div>');
}
//if (is_spider())
//{
/* 如果是蜘蛛的访问,那么默认为访客方式,并且不记录到日志中 */
// if (!defined('INIT_NO_USERS'))
// {
// define('INIT_NO_USERS', true);
/* 整合UC后如果是蜘蛛访问初始化UC需要的常量 */
// if($_CFG['integrate_code'] == 'ucenter')
// {
// $user = init_users();
// }
// }
// $_SESSION = array();
// $_SESSION['user_id'] = 0;
// $_SESSION['user_name'] = '';
// $_SESSION['email'] = '';
// $_SESSION['user_rank'] = 0;
// $_SESSION['discount'] = 1.00;
//}
if(!empty($_GET['site_name'])){
$http_host=$_GET['site_name'].".".$_CFG['cf_domain'];
}else{
$http_host= $_SERVER['HTTP_HOST'];
}
if($http_host=='www.'.$_CFG['cf_domain']){
$site_id=1;
$site_type='portal';
}else{
$sql = 'SELECT id ' .
' FROM ' .$ecs->table('portal') .
" WHERE domain = '" . $http_host . "'";
$site_id = $db->getOne($sql);
if($site_id){
$site_type="portal";
}else{
$sql = 'SELECT a.hs_id ' .
' FROM ' .$ecs->table('hs_web') . " a, ".$ecs->table('users') . " b " .
" WHERE a.hs_id=b.user_id and b.status=0 and a.domain = '" . $http_host . "'";
$site_id = $db->getOne($sql);
if($site_id){
$site_type="web";
$site_name=str_replace(".".$_CFG['cf_domain'],"",$http_host);
}else{
exit;
}
}
}
if (!defined('INIT_NO_USERS'))
{
/* 初始化session */
include(ROOT_PATH . 'includes/cls_session.php');
$sess = new cls_session($db, $ecs->table('sessions'), $ecs->table('sessions_data'));
define('SESS_ID', $sess->get_session_id());
}
if(isset($_SERVER['PHP_SELF']))
{
$_SERVER['PHP_SELF']=htmlspecialchars($_SERVER['PHP_SELF']);
}
if (!defined('INIT_NO_SMARTY'))
{
header('Cache-control: private');
header('Content-type: text/html; charset='.EC_CHARSET);
/* 创建 Smarty 对象。*/
require(ROOT_PATH . 'includes/cls_template.php');
$smarty = new cls_template;
$smarty->cache_lifetime = $_CFG['cache_time'];
$smarty->template_dir = ROOT_PATH . 'themes/' . $_CFG['template'].'/'.$site_type;
$smarty->cache_dir = ROOT_PATH . 'temp/caches';
$smarty->compile_dir = ROOT_PATH . 'temp/compiled';
$smarty->site_type =$site_type;
if ((DEBUG_MODE & 2) == 2)
{
$smarty->direct_output = true;
$smarty->force_compile = true;
}
else
{
$smarty->direct_output = false;
$smarty->force_compile = false;
}
$smarty->assign('lang', $_LANG);
$smarty->assign('ecs_charset', EC_CHARSET);
$smarty->assign('tpl', '/themes/'.$GLOBALS['_CFG']['template'].'/'.$site_type.'/');
$smarty->assign('site_name', $site_name);
if (!empty($_CFG['stylename']))
{
$smarty->assign('ecs_css_path', 'themes/' . $_CFG['template'] .'/'.$site_type. '/style_' . $_CFG['stylename'] . '.css');
}
else
{
$smarty->assign('ecs_css_path', 'themes/' . $_CFG['template'] .'/'.$site_type .'/style.css');
}
$smarty->assign('_CFG', $_CFG);
}
if ((DEBUG_MODE & 1) == 1)
{
error_reporting(E_ALL);
}
else
{
error_reporting(E_ALL ^ (E_NOTICE | E_WARNING));
}
if ((DEBUG_MODE & 4) == 4)
{
include(ROOT_PATH . 'includes/lib.debug.php');
}
/* 判断是否支持 Gzip 模式 */
if (!defined('INIT_NO_SMARTY') && gzip_enabled())
{
ob_start('ob_gzhandler');
}
else
{
ob_start();
}
?>