Skip to content
Snippets Groups Projects
Commit 98e27d3a authored by Xavier Perseguers's avatar Xavier Perseguers
Browse files

[!!!][TASK] Early check for PHP 5.5 in Install Tool

PHP 5.5 or above is a requirement for TYPO3 CMS. As code is using
specific PHP 5.5 features, an early check is required in Install Tool.

Releases: master
Resolves: #62914
Change-Id: Ia33b5e16d5cc96edc7cad5a4348fce5fb1b1236a
Reviewed-on: http://review.typo3.org/34056


Reviewed-by: default avatarBenjamin Mack <benni@typo3.org>
Reviewed-by: default avatarWouter Wolters <typo3@wouterwolters.nl>
Reviewed-by: default avatarAnja Leichsenring <aleichsenring@ab-softlab.de>
Tested-by: default avatarAnja Leichsenring <aleichsenring@ab-softlab.de>
Reviewed-by: default avatarMarkus Klein <klein.t3@reelworx.at>
Tested-by: default avatarMarkus Klein <klein.t3@reelworx.at>
Reviewed-by: default avatarXavier Perseguers <xavier@typo3.org>
Tested-by: default avatarXavier Perseguers <xavier@typo3.org>
parent f8ca835a
No related merge requests found
==========================================================
Breaking: #62914 - Early check for PHP 5.5 in Install Tool
==========================================================
Description
===========
PHP 5.5 or above is a requirement for TYPO3 CMS v7.0. As code is using specific PHP 5.5 features, an
early check is required in Install Tool.
Impact
======
Install Tool will throw an exception if PHP 5.5 or above is not detected.
Affected installations
======================
Any installation without at least PHP 5.5.
Migration
=========
Upgrade to PHP 5.5 or above.
......@@ -93,6 +93,10 @@
* can exist yet.
*/
if (version_compare(PHP_VERSION, '5.5.0', '<')) {
throw new \Exception('TYPO3 CMS requires PHP 5.5 or above', 1415878732);
}
define('TYPO3_MODE', 'BE');
define('TYPO3_enterInstallScript', '1');
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment