forked from zsae/xiunobbs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
47 lines (35 loc) · 1.03 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
/*
* Copyright (C) xiuno.com
*/
//sae_xhprof_start();
// 调试模式: 0:关闭; 1: 线上调试模式; 2: 本地开发详细调试模式;
define('DEBUG', 2);
// 有些环境关闭了错误显示
DEBUG && function_exists('ini_set') && @ini_set('display_errors', 'On');
//print_r($_SERVER);exit;
// 站点根目录,在单元测试时候,此文件可能被包含
define('BBS_PATH', str_replace('\\', '/', dirname(__FILE__)).'/');
// 加载应用的配置文件,唯一的全局变量 $conf
if(!($conf = include BBS_PATH.'conf/conf.php')) {
header('Location:install/');
exit;
}
if(empty($conf['installed'])) {
header('Location:install/');
exit;
}
// 框架的物理路径
define('FRAMEWORK_PATH', BBS_PATH.'xiunophp/');
// 临时目录
define('FRAMEWORK_TMP_PATH', $conf['tmp_path']);
// 日志目录
define('FRAMEWORK_LOG_PATH', $conf['log_path']);
// 包含核心框架文件,转交给框架进行处理。
include FRAMEWORK_PATH.'core.php';
core::init($conf);
core::ob_start();
core::run($conf);
//sae_xhprof_end();
// 完毕
?>