1 Star 0 Fork 6

hlbejy/多用户商城系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
install.php 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
dayrui 提交于 2019-08-07 17:47 . no commit message
<?php
/**
* 安装程序
*/
header('Content-Type: text/html; charset=utf-8');
// 判断环境
if (version_compare(PHP_VERSION, '7.1.0') < 0) {
echo "<font color=red>PHP版本必须在7.1以上</font>";exit;
}
$pos = strpos(trim($_SERVER['SCRIPT_NAME'], '/'), '/');
if ($pos !== false && $pos > 1) {
echo "<font color=red>本程序必须在域名根目录中安装</font>";exit;
}
define('WEBPATH', dirname(__FILE__).'/');
define('WRITEPATH', WEBPATH.'cache/');
// 判断目录权限
foreach ([
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;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/hlbejy/mall.git
git@gitee.com:hlbejy/mall.git
hlbejy
mall
多用户商城系统
master

搜索帮助