[phpBB Debug] PHP Warning: in file [ROOT]/ext/tas2580/seourls/event/listener.php on line 213: Undefined array key "FORUM_NAME"
REDAXO Forum • Installation R5: Fast ein Fehler in boot.php
Seite 1 von 1

Installation R5: Fast ein Fehler in boot.php

Verfasst: 10. Mai 2017, 09:35
von ch-gerber
Als erster Schritt in der Installation wird folgendes ausgeführt:

Code: Alles auswählen

define('REX_MIN_PHP_VERSION', '5.5.9');
if (version_compare(PHP_VERSION, REX_MIN_PHP_VERSION) < 0) {
    throw new Exception('PHP version >=' . REX_MIN_PHP_VERSION . ' needed!');
}
Das Problem ist, dass genau der Befehl throw new Exception in älteren php-Versionen nicht zur Verfüging steht und damit die Installation ohne Fehlermeldung abbricht. Kein Fehler aber doch unschön. Ich würde anregen hier einfachere Befehle (echo ... exit) zu verwenden.