forked from qinggan/phpok
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
48 lines (43 loc) · 1.04 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
48
<?php
/**
* PHPOK企业站系统
*
* 本程序采用LGPL协议开源授权,具体内容:(http://www.gnu.org/licenses/lgpl.html)
*
* 有问题请进官网查阅,我们的官网是:(http://www.phpok.com)
*
* @file index.php
* @author phpok.com <[email protected]>
* @copyright 2015-2016 深圳市锟铻科技有限公司
* @version 4.5.x
* @date 2016年01月17日
*/
/**
* 定义常量,所有PHP文件仅允许从这里入口
*/
define("PHPOK_SET",true);
/**
* 定义APP_ID,不同APP_ID调用不同的文件
*/
define("APP_ID","www");
/**
* 定义根目录,如果此项出错,请将定义改成
* define("ROOT","./");
*/
define("ROOT",str_replace("\\","/",dirname(__FILE__))."/");
/**
* 定义框架目录
*/
define("FRAMEWORK",ROOT."framework/");
/**
* 检测是否已安装,如未安装跳转到安装页面,建议您在安装成功后去除这个判断。
*/
if(!file_exists(ROOT."data/install.lock")){
header("Location:phpokinstall.php");
exit;
}
/**
* 引入初始化文件
*/
require(FRAMEWORK.'init.php');
?>