[Install] Check if database.php exists and if it does exit install process.

这个提交包含在:
Peter Goodhall 2021-07-20 18:19:09 +01:00
父节点 e63f3c8c6f
当前提交 efdbaf9cfa

查看文件

@ -3,6 +3,13 @@
$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
if($_POST) {