[UPDATE] Print error if vendor libs are missing
This commit is contained in:
parent
1f8a33247f
commit
61670a1c44
@ -2,7 +2,11 @@
|
|||||||
(SECURITY == "*)WT#&YHfd" && SECHASH_CHECK) ? die("public/index.php -> Set a new SECURITY value to continue") : 0;
|
(SECURITY == "*)WT#&YHfd" && SECHASH_CHECK) ? die("public/index.php -> Set a new SECURITY value to continue") : 0;
|
||||||
$defflip = (!cfip()) ? exit(header('HTTP/1.1 401 Unauthorized')) : 1;
|
$defflip = (!cfip()) ? exit(header('HTTP/1.1 401 Unauthorized')) : 1;
|
||||||
|
|
||||||
require_once(INCLUDE_DIR . '/../vendor/autoload.php');
|
if (file_exists(INCLUDE_DIR . '/../vendor/autoload.php')) {
|
||||||
|
require_once(INCLUDE_DIR . '/../vendor/autoload.php');
|
||||||
|
} else {
|
||||||
|
die("Unable to load vendor libraries, please run `php composer.phar install` in root folder.");
|
||||||
|
}
|
||||||
|
|
||||||
// Default classes
|
// Default classes
|
||||||
require_once(INCLUDE_DIR . '/lib/KLogger.php');
|
require_once(INCLUDE_DIR . '/lib/KLogger.php');
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user