From 7de2e07139352c7d332945e9b9db5fc65a8a507e Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Tue, 3 Oct 2017 03:19:23 +1300 Subject: [PATCH] Fix main.php path in install.php --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.php b/install.php index d9c5689..e2ae6d2 100644 --- a/install.php +++ b/install.php @@ -9,7 +9,7 @@ ************************************************************************************ ************************************************************************************/ -if (!file_exists('vendor/silverstripe/framework') || !file_exists('vendor/silverstripe/framework/_config.php')) { +if (!file_exists(__DIR__ . '/vendor/silverstripe/framework') || !file_exists(__DIR__ . '/vendor/silverstripe/framework/_config.php')) { include 'install-frameworkmissing.html'; } else { include './vendor/silverstripe/framework/src/Dev/Install/install.php';