icingaweb2-module-director/run-php5.3.php
Eric Lippmann b6af283732 License source files as GPL-3.0-or-later
Add SPDX license headers and mark source files as GPL-3.0-or-later to
preserve the option to relicense under later GPL versions.
2026-03-24 11:30:06 +01:00

28 lines
770 B
PHP

<?php
// SPDX-FileCopyrightText: 2018 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later
use Icinga\Application\Icinga;
use Icinga\Exception\IcingaException;
use Icinga\Web\Url;
if (Icinga::app()->isCli()) {
throw new IcingaException(
"PHP version 5.6.x is required for Director >= 1.7.0, you're running %s."
. ' Please either upgrade PHP or downgrade Icinga Director',
PHP_VERSION
);
} else {
$request = Icinga::app()->getRequest();
$path = $request->getPathInfo();
if (! preg_match('#^/director#', $path)) {
return;
}
if (preg_match('#^/director/phperror/error#', $path)) {
return;
}
header('Location: ' . Url::fromPath('director/phperror/error'));
exit;
}