21 Star 28 Fork 18

爱客开源 / IKSNS

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
install.php 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
ikphp 提交于 2014-05-09 12:42 . Signed-off-by: ikphp ikphp@sina.cn
<?php
// +----------------------------------------------------------------------
// | IKPHP.COM [ I can do all the things that you can imagine ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2050 http://www.ikphp.com All rights reserved.
// +----------------------------------------------------------------------
// | Author: 小麦 <810578553@qq.com> <http://www.ikcms.cn>
// +----------------------------------------------------------------------
if(version_compare(PHP_VERSION,'5.3.0','<')) die('要求 PHP > 5.3.0 !');
/**
* 系统调试设置
* 项目正式部署后请设置为false
*/
define ( 'APP_DEBUG', true );
define ( 'BIND_MODULE','Install');
/**
* 应用目录设置
* 安全期间,建议安装调试完成后移动到非WEB目录
*/
define ( 'APP_PATH', './Apps/' );
define ( 'IKPHP_DATA', './Data/' );
/**
* 缓存目录设置
* 此目录必须可写,建议移动到非WEB目录
*/
define ( 'RUNTIME_PATH', './Runtime/' );
if (is_file(IKPHP_DATA.'install.lock')) {
header('Location: ./index.php');
exit;
}
//载入版本号 删除后将无法升级系统
$arr_ikversion = require_once('version.php');
//定义全局版本序列
foreach ($arr_ikversion as $key => $val){
define($key, $val);
}
/**
* 引入核心入口
* ThinkPHP亦可移动到WEB以外的目录
*/
require './ThinkPHP/ThinkPHP.php';
PHP
1
https://gitee.com/daokr/IKSNS.git
git@gitee.com:daokr/IKSNS.git
daokr
IKSNS
IKSNS
master

搜索帮助