-凯发平台
* date: 2018-4-3
*/
header("content-type:text/html;charset=utf-8");
// [ 应用入口文件 ]
if (extension_loaded('zlib')){
try{
ob_end_clean();
} catch(exception $e) {
}
ob_start('ob_gzhandler');
}
// 检测php环境
if(version_compare(php_version,'5.4.0','<')) {
die('本系统要求php版本 >= 5.4.0,当前php版本为:'.php_version . ',请到虚拟主机控制面板里切换php版本,或联系空间商协助切换。(注:部分虚拟主机存在缓存,切换版本后请等待半小时左右再重试安装) ');
}
// error_reporting(e_all ^ e_notice);//显示除去 e_notice 之外的所有错误信息
error_reporting(e_error | e_warning | e_parse);//报告运行时错误
// 检测是否已安装eyoucms系统
if(file_exists("./install/") && !file_exists("./install/install.lock")){
if (preg_match('/^s=\/(. )/i', $_server['query_string'])) {
$url = 'http://'.$_server['http_host'].$_server['script_name'];
header('location:'.$url);
exit();
} else {
header('location:./install/index.php');
exit();
}
}
// 绑定当前访问到admin模块
define('bind_module','admin');
// 缓存时间
define('eyoucms_cache_time', 86400);
// 数据绝对路径
define('data_path', __dir__ . '/data/');
// 运行缓存
define('runtime_path', data_path . 'runtime/');
// 安装程序定义
define('default_install_date',1525756440);
// 序列号
define('default_serialnumber','20180508131400ocwioa');
// 定义应用目录
define('app_path', __dir__ . '/application/');
// 加载框架引导文件
require __dir__ . '/core/start.php';