1 Star 0 Fork 56

喜欢乱跑/wellcms

forked from 燃烧的冰/wellcms 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.php 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
燃烧的冰 提交于 2020-06-05 15:52 . .
<?php
/*
* Copyright (C) www.wellcms.cn
*/
// 0: Production mode; 1: Developer mode; 2: Plugin developement mode;
// 0: 线上模式; 1: 调试模式; 2: 插件开发模式;
!defined('DEBUG') AND define('DEBUG', 0);
define('APP_PATH', dirname(__FILE__) . '/'); // __DIR__
!defined('ADMIN_PATH') AND define('ADMIN_PATH', APP_PATH . 'admin/');
!defined('XIUNOPHP_PATH') AND define('XIUNOPHP_PATH', APP_PATH . 'xiunophp/');
$conf = (@include APP_PATH . 'conf/conf.php') OR exit('<script>window.location="install/"</script>');
// 转换为绝对路径,防止被包含时出错。
substr($conf['log_path'], 0, 2) == './' AND $conf['log_path'] = APP_PATH . $conf['log_path'];
substr($conf['tmp_path'], 0, 2) == './' AND $conf['tmp_path'] = APP_PATH . $conf['tmp_path'];
substr($conf['upload_path'], 0, 2) == './' AND $conf['upload_path'] = APP_PATH . $conf['upload_path'];
$_SERVER['conf'] = $conf;
if (DEBUG > 1) {
include XIUNOPHP_PATH . 'xiunophp.php';
} else {
include XIUNOPHP_PATH . 'xiunophp.min.php';
}
include APP_PATH . 'model/plugin.func.php';
include _include(APP_PATH . 'model.inc.php');
include _include(APP_PATH . 'index.inc.php');
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/xxslab/wellcms.git
[email protected]:xxslab/wellcms.git
xxslab
wellcms
wellcms
master

搜索帮助