加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.php 922 Bytes
一键复制 编辑 原始数据 按行查看 历史
water176142735 提交于 2016-11-11 13:58 . bug
<?php
// error_reporting(E_ALL & ~E_NOTICE);
// $_GET['debug']=1;
define('ROOT_PATH', dirname(__FILE__));
include(ROOT_PATH . '/eccore/ecmall.php');
if (!file_exists(ROOT_PATH . "/data/install.lock") && is_dir(ROOT_PATH . "/install")) {
@header("location: install");
exit;
}
/* 定义配置信息 */
ecm_define(ROOT_PATH . '/data/config.inc.php');
/* 启动ECMall */
ECMall::startup(array(
'default_app' => 'default',
'default_act' => 'index',
'app_root' => ROOT_PATH . '/app',
'external_libs' => array(
ROOT_PATH . '/includes/global.lib.php',
ROOT_PATH . '/includes/libraries/time.lib.php',
ROOT_PATH . '/includes/ecapp.base.php',
ROOT_PATH . '/includes/plugin.base.php',
ROOT_PATH . '/app/frontend.base.php',
ROOT_PATH . '/includes/subdomain.inc.php',
ROOT_PATH . '/includes/libraries/zllib/common.lib.php',
),
));
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化