1 Star 0 Fork 0

ittochat/SimpleForum

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
install.php 2.07 KB
一键复制 编辑 原始数据 按行查看 历史
yujiandong 提交于 2021-03-21 17:23 . v1.3.1
<?php
/**
* @link http://simpleforum.org/
* @copyright Copyright (c) 2015 SimpleForum
* @author Jiandong Yu [email protected]
*/
define('SF_DIR', 'core');
define('SF_PATH', __DIR__.'/' . SF_DIR);
header("Content-Type: text/html; charset=UTF-8");
if (version_compare(PHP_VERSION, '5.4.0', '<')) {
echo 'php版本过低,请先安装php5.4.0以上版本';
exit;
}
if (file_exists(SF_PATH . '/runtime/install.lock')) {
echo '你已安装过本程序。如确定要重装,请'."\n".'1.做好数据备份,'."\n".'2.删除' . SF_DIR . '/runtime/install.lock文件,'."\n".'3.重新执行安装程序。';
exit;
}
if ( !is_writeable(SF_PATH . '/config') ) {
echo SF_DIR . '/config目录没有写权限。请加上写权限。';
exit;
}
if ( !is_writeable(__DIR__.'/assets') ) {
echo 'assets目录没有写权限。请加上写权限。';
exit;
}
if ( !is_writeable(SF_PATH . '/runtime') ) {
echo SF_DIR . '/runtime目录没有写权限。请加上写权限。';
exit;
}
if ( !is_writeable(__DIR__.'/avatar') ) {
echo 'avatar目录没有写权限。请加上写权限。';
exit;
}
if ( !is_writeable(__DIR__.'/upload') ) {
echo 'upload目录没有写权限。请加上写权限。';
exit;
}
if (!file_exists(SF_PATH . '/config/db.php')) {
if (!copy(SF_PATH . '/config/db.php.default', SF_PATH . '/config/db.php')) {
echo '文件copy出错,请手动将' . SF_DIR . '/config目录下db.php.default改名为db.php';
exit;
}
}
if (!file_exists(SF_PATH . '/config/params.php')) {
if (!copy(SF_PATH . '/config/params.php.default', SF_PATH . '/config/params.php')) {
echo '文件copy出错,请手动将' . SF_DIR . '/config目录下params.php.default改名为params.php';
exit;
}
}
if (!file_exists(SF_PATH . '/config/plugins.php')) {
if (!copy(SF_PATH . '/config/plugins.php.default', SF_PATH . '/config/plugins.php')) {
echo '文件copy出错,请手动将' . SF_DIR . '/config目录下plugins.php.default改名为plugins.php';
exit;
}
}
header("Location: install");
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/ittochat/SimpleForum.git
[email protected]:ittochat/SimpleForum.git
ittochat
SimpleForum
SimpleForum
master

搜索帮助