diff --git a/core/INSTALL.txt b/core/INSTALL.txt index 6ae05b4..2c135fb 100644 --- a/core/INSTALL.txt +++ b/core/INSTALL.txt @@ -18,7 +18,7 @@ Drupal requires: - A web server with PHP support, for example: - Apache 2.0 (or greater) (http://httpd.apache.org/). - Nginx 1.1 (or greater) (http://nginx.com/). -- PHP 5.4.5 (or greater) (http://php.net/). For better security support it is +- PHP 5.5.0 (or greater) (http://php.net/). For better security support it is recommended to update to at least 5.5.21 or 5.6.5. - One of the following databases: - MySQL 5.5.3 (or greater) (http://www.mysql.com/). diff --git a/core/includes/bootstrap.inc b/core/includes/bootstrap.inc index d11e608..61b7e47 100644 --- a/core/includes/bootstrap.inc +++ b/core/includes/bootstrap.inc @@ -23,7 +23,7 @@ /** * Minimum supported version of PHP. */ -const DRUPAL_MINIMUM_PHP = '5.4.5'; +const DRUPAL_MINIMUM_PHP = '5.5.0'; /** * Minimum recommended value of PHP memory_limit. diff --git a/core/install.php b/core/install.php index d884446..6871899 100644 --- a/core/install.php +++ b/core/install.php @@ -21,8 +21,8 @@ // The minimum version is specified explicitly, as DRUPAL_MINIMUM_PHP is not // yet available. It is defined in bootstrap.inc, but it is not possible to // load that file yet as it would cause a fatal error on older versions of PHP. -if (version_compare(PHP_VERSION, '5.4.5') < 0) { - print 'Your PHP installation is too old. Drupal requires at least PHP 5.4.5. See the system requirements page for more information.'; +if (version_compare(PHP_VERSION, '5.5.0') < 0) { + print 'Your PHP installation is too old. Drupal requires at least PHP 5.5.0. See the system requirements page for more information.'; exit; }