From a7f6c5981818b88baec0bf9c05412e7d46b088fb Mon Sep 17 00:00:00 2001 From: Bozhidar Date: Sun, 12 May 2024 17:57:59 +0300 Subject: [PATCH] update --- web/app/Livewire/Installer.php | 2 ++ web/app/SupportedApplicationTypes.php | 1 + 2 files changed, 3 insertions(+) diff --git a/web/app/Livewire/Installer.php b/web/app/Livewire/Installer.php index a64ef0e..fadf176 100644 --- a/web/app/Livewire/Installer.php +++ b/web/app/Livewire/Installer.php @@ -301,6 +301,8 @@ class Installer extends Page if (strpos($this->install_log, 'DONE!') !== false) { + unlink(storage_path($this->install_log_file_path)); + file_put_contents(storage_path('installed'), 'installed-'.date('Y-m-d H:i:s')); return redirect('/admin/login'); diff --git a/web/app/SupportedApplicationTypes.php b/web/app/SupportedApplicationTypes.php index 281501a..e661871 100644 --- a/web/app/SupportedApplicationTypes.php +++ b/web/app/SupportedApplicationTypes.php @@ -59,6 +59,7 @@ class SupportedApplicationTypes { $versions = []; $phpVersions = [ + '5.6', '7.4', '8.0', '8.1',