From b75c9ddff63b6be19d0de8bb6257428471f5dacf Mon Sep 17 00:00:00 2001 From: Daniel Drexlmaier Date: Mon, 27 May 2019 15:27:28 +0200 Subject: [PATCH 1/2] Update install.php --- install/install.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install/install.php b/install/install.php index 1e06c9d1..3a93b420 100644 --- a/install/install.php +++ b/install/install.php @@ -15,6 +15,9 @@ * @package Install * */ +if(!file_exists(dirname(__DIR__) . '/vendor/autoload.php')){ + die('Vendor does not exist. Please run "Composer install". For more informationen https://github.com/Froxlor/Froxlor/wiki'); +} require dirname(__DIR__) . '/vendor/autoload.php'; require __DIR__ . '/lib/class.FroxlorInstall.php'; From 6ea91f55e5052df86e6d1e90dbbc03073b0e7d7e Mon Sep 17 00:00:00 2001 From: Daniel Drexlmaier Date: Mon, 27 May 2019 15:47:30 +0200 Subject: [PATCH 2/2] Update install.php --- install/install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/install.php b/install/install.php index 3a93b420..76723290 100644 --- a/install/install.php +++ b/install/install.php @@ -16,7 +16,7 @@ * */ if(!file_exists(dirname(__DIR__) . '/vendor/autoload.php')){ - die('Vendor does not exist. Please run "Composer install". For more informationen https://github.com/Froxlor/Froxlor/wiki'); + die('Vendor does not exist. Please run "composer install". For more informationen https://github.com/Froxlor/Froxlor/wiki'); } require dirname(__DIR__) . '/vendor/autoload.php'; require __DIR__ . '/lib/class.FroxlorInstall.php';