1 Star 0 Fork 345

XiaoTommy / 迅睿CMS框架

forked from dayrui / 迅睿CMS框架 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
install.php 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
PHP码农 提交于 2019-09-09 22:14 . fix
<?php
/**
* 安装程序
*/
header('Content-Type: text/html; charset=utf-8');
// 判断环境
if (version_compare(PHP_VERSION, '7.1.0') < 0) {
echo "<font color=red>PHP版本必须在7.2以上</font>";exit;
}
$pos = strpos(trim($_SERVER['SCRIPT_NAME'], '/'), '/');
if ($pos !== false && $pos > 1) {
echo "<font color=red>本程序必须在域名根目录中安装</font>,查看手册:http://help.xunruicms.com/741.html";exit;
}
define('WEBPATH', dirname(__FILE__).'/');
define('WRITEPATH', WEBPATH.'cache/');
// 判断目录权限
foreach (array(
WRITEPATH,
WRITEPATH.'data/',
WRITEPATH.'template/',
WRITEPATH.'session/',
WEBPATH.'config/',
WEBPATH.'uploadfile/',
) as $t) {
if (!dr_check_put_path($t)) {
exit('目录('.$t.')不可写');
}
}
header('Location: index.php?c=install');
// 检查目录权限
function dr_check_put_path($dir) {
if (!$dir) {
return 0;
} elseif (!is_dir($dir)) {
return 0;
}
$size = @file_put_contents($dir.'test.html', 'test');
if ($size === false) {
return 0;
} else {
@unlink($dir.'test.html');
return 1;
}
}
PHP
1
https://gitee.com/xiaomingwu/xunruicms.git
git@gitee.com:xiaomingwu/xunruicms.git
xiaomingwu
xunruicms
迅睿CMS框架
master

搜索帮助