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.
146 lines
3.8 KiB
146 lines
3.8 KiB
<?php
|
|
|
|
/**
|
|
* ECSHOP API 公用初始化文件
|
|
* ============================================================================
|
|
* * 版权所有 2005-2016 上海商创网络科技有限公司,并保留所有权利。
|
|
* 网站地址: http://www.ecmoban.com;
|
|
* ----------------------------------------------------------------------------
|
|
* 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和
|
|
* 使用;不允许对程序代码以任何形式任何目的的再发布。
|
|
* ============================================================================
|
|
* $Author: liubo $
|
|
* $Id: init.php 17217 2011-01-19 06:29:08Z liubo $
|
|
*/
|
|
|
|
if (!defined('IN_ECS'))
|
|
{
|
|
die('Hacking attempt');
|
|
}
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
if (__FILE__ == '')
|
|
{
|
|
die('Fatal error code: 0');
|
|
}
|
|
|
|
/* 取得当前ecshop所在的根目录 */
|
|
define('ROOT_PATH', str_replace('api', '', str_replace('\\', '/', dirname(__FILE__))));
|
|
|
|
/* 初始化设置 */
|
|
@ini_set('memory_limit', '16M');
|
|
@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);
|
|
}
|
|
|
|
if (file_exists(ROOT_PATH . 'data/config.php'))
|
|
{
|
|
include(ROOT_PATH . 'data/config.php');
|
|
}
|
|
else
|
|
{
|
|
include(ROOT_PATH . 'includes/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/lib_base.php');
|
|
require(ROOT_PATH . 'includes/lib_common.php');
|
|
require(ROOT_PATH . 'includes/lib_time.php');
|
|
|
|
//ecmoban模板堂 --zhuo start
|
|
require(ROOT_PATH . 'includes/lib_ecmoban.php');
|
|
require(ROOT_PATH . 'includes/Http.class.php');
|
|
require(ROOT_PATH . 'includes/lib_ecmobanFunc.php');
|
|
require(ROOT_PATH . 'includes/lib_seller_store.php');
|
|
require(ROOT_PATH . 'includes/lib_ipCity.php');
|
|
require(ROOT_PATH . 'includes/cls_ecmac.php');
|
|
//ecmoban模板堂 --zhuo end
|
|
|
|
/* 对用户传入的变量进行转义操作。*/
|
|
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);
|
|
}
|
|
|
|
/* 创建 ECSHOP 对象 */
|
|
$ecs = new ECS($db_name, $prefix);
|
|
$data_dir = $ecs->data_dir();
|
|
|
|
/* 初始化数据库类 */
|
|
require(ROOT_PATH . 'includes/cls_mysql.php');
|
|
$db = new cls_mysql($db_host, $db_user, $db_pass, $db_name);
|
|
$db_host = $db_user = $db_pass = $db_name = NULL;
|
|
|
|
/* 初始化session */
|
|
require(ROOT_PATH . 'includes/cls_session.php');
|
|
$sess_name = defined("SESS_NAME") ? SESS_NAME : 'ECS_ID';
|
|
$sess = new cls_session($db, $ecs->table('sessions'), $ecs->table('sessions_data'), $sess_name);
|
|
|
|
/* 载入系统参数 */
|
|
$_CFG = load_config();
|
|
|
|
/* 初始化用户插件 */
|
|
$user =& init_users();
|
|
|
|
if ((DEBUG_MODE & 1) == 1)
|
|
{
|
|
error_reporting(E_ALL);
|
|
}
|
|
else
|
|
{
|
|
error_reporting(E_ALL ^ E_NOTICE);
|
|
}
|
|
if ((DEBUG_MODE & 4) == 4)
|
|
{
|
|
include(ROOT_PATH . 'includes/lib.debug.php');
|
|
}
|
|
|
|
/* 判断是否支持 Gzip 模式 */
|
|
if (gzip_enabled())
|
|
{
|
|
ob_start('ob_gzhandler');
|
|
}
|
|
|
|
header('Content-type: text/html; charset=' . EC_CHARSET);
|
|
|
|
?>
|