forked from eaterplanet/EP-Admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
39 lines (27 loc) · 903 Bytes
/
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
<?php
/**
* eaterplanet 商城系统
*
* ==========================================================================
* @link http://www.ch871.com/
* @copyright Copyright (c) 2019-2021 ch871.com.
* @license http://www.ch871.com/license.html License
* ==========================================================================
*
* @author Albert.Z
*
*/
if(version_compare(PHP_VERSION,'5.3.0','<')) die('require PHP > 5.3.0 !');
header("Content-Type:text/html; charset=utf-8");
define('APP_DEBUG', true);
define('BIND_MODULE','Home');
define ('APP_PATH', './Modules/' );
if (!is_file( 'Modules/Common/Conf/install.lock')) {
header('Location: ./install.php');
exit;
}
define('ROOT_PATH',str_replace('\\','/',dirname(__FILE__)) . '/');
define('ATTACHMENT_ROOT', ROOT_PATH.'Uploads/image/');
define ('RUNTIME_PATH','./Runtime/');
require './ThinkPHP/ThinkPHP.php';
?>