mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Check PHP version first (#10473)
Check PHP version before anything so we can inform the user instead of them getting generic error 500.
This commit is contained in:
@@ -37,16 +37,16 @@ use Toastr;
|
||||
|
||||
class Checks
|
||||
{
|
||||
public static function preBoot()
|
||||
public static function preAutoload()
|
||||
{
|
||||
// check php extensions
|
||||
if ($missing = self::missingPhpExtensions()) {
|
||||
// Check PHP version otherwise it will just say server error
|
||||
if (version_compare('7.1.3', PHP_VERSION, '>=')) {
|
||||
self::printMessage(
|
||||
"Missing PHP extensions. Please install and enable them on your LibreNMS server.",
|
||||
$missing,
|
||||
'PHP version 7.1.3 or newer is required to run LibreNMS',
|
||||
null,
|
||||
true
|
||||
);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -63,6 +63,18 @@ class Checks
|
||||
}
|
||||
}
|
||||
|
||||
public static function preBoot()
|
||||
{
|
||||
// check php extensions
|
||||
if ($missing = self::missingPhpExtensions()) {
|
||||
self::printMessage(
|
||||
"Missing PHP extensions. Please install and enable them on your LibreNMS server.",
|
||||
$missing,
|
||||
true
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Post boot Toast messages
|
||||
*/
|
||||
|
@@ -14,10 +14,9 @@ define('LARAVEL_START', microtime(true));
|
||||
|
|
||||
*/
|
||||
|
||||
@require_once __DIR__ . '/../app/Checks.php';
|
||||
\App\Checks::preAutoload();
|
||||
|
||||
@include __DIR__ . '/../vendor/autoload.php';
|
||||
|
||||
if (!class_exists(\App\Checks::class)) {
|
||||
require __DIR__ . '/../app/Checks.php';
|
||||
}
|
||||
|
||||
\App\Checks::postAutoload();
|
||||
|
Reference in New Issue
Block a user