[Install] Check if database.php exists and if it does exit install process.
这个提交包含在:
父节点
e63f3c8c6f
当前提交
efdbaf9cfa
共有 1 个文件被更改,包括 7 次插入 和 0 次删除
|
|
@ -3,6 +3,13 @@
|
||||||
|
|
||||||
$db_config_path = '../application/config/';
|
$db_config_path = '../application/config/';
|
||||||
|
|
||||||
|
$db_file_path = $db_config_path."database.php";
|
||||||
|
|
||||||
|
if (file_exists($db_file_path)) {
|
||||||
|
echo "Cloudlog is already installed, please delete the /install folder.";
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
// Only load the classes in case the user submitted the form
|
// Only load the classes in case the user submitted the form
|
||||||
if($_POST) {
|
if($_POST) {
|
||||||
|
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用