Skip to content
Snippets Groups Projects
Commit 4acbcf6d authored by Angie Byron's avatar Angie Byron
Browse files

#722974 by chx, moshe weitzman, David_Rothstein: Fixed install script returns...

#722974 by chx, moshe weitzman, David_Rothstein: Fixed install script returns a blank page for PHP 5.1.
parent 84f06dda
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,12 @@
*/
define('MAINTENANCE_MODE', 'install');
// Exit early if running an incompatible PHP version to avoid fatal errors.
if (version_compare(PHP_VERSION, '5.2.4') < 0) {
print 'Your PHP installation is too old. Drupal requires at least PHP 5.2.4. See the <a href="http://drupal.org/requirements">system requirements</a> page for more information.';
exit;
}
// Start the installer.
require_once DRUPAL_ROOT . '/includes/install.core.inc';
install_drupal();
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment