From 9537ac63aacbeb05b45f2bac908bd1f04e79de2f Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 21 May 2010 11:53:26 +0000 Subject: - Patch #793388 by StuartJNCC, David_Rothstein: attempting to update D6 to D7 without PDO enabled causes WSOD. --- includes/update.inc | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'includes') diff --git a/includes/update.inc b/includes/update.inc index 950886bbc..ff641a925 100644 --- a/includes/update.inc +++ b/includes/update.inc @@ -99,6 +99,23 @@ function update_prepare_d7_bootstrap() { // that occur by creating a static list. $GLOBALS['conf']['blocked_ips'] = array(); + // Check that PDO is available and that the correct PDO database driver is + // loaded. Bootstrapping to DRUPAL_BOOTSTRAP_DATABASE will result in a fatal + // error otherwise. + $message = ''; + // Check that PDO is loaded. + if (!extension_loaded('pdo')) { + $message = '

PDO is required!

Drupal 7 requires PHP ' . DRUPAL_MINIMUM_PHP . ' or higher with the PHP Data Objects (PDO) extension enabled.

'; + } + // Check that the correct driver is loaded for the database being updated. + elseif (!in_array($databases['default']['default']['driver'], PDO::getAvailableDrivers())) { + $message = '

A PDO database driver is required!

You need to enable the PDO_' . strtoupper($databases['default']['default']['driver']) . ' database driver for PHP ' . DRUPAL_MINIMUM_PHP . ' or higher so that Drupal 7 can access the database.

'; + } + if ($message) { + print $message . '

See the system requirements page for more information.

'; + exit(); + } + // Allow the database system to work even if the registry has not been // created yet. drupal_bootstrap(DRUPAL_BOOTSTRAP_DATABASE); -- cgit v1.2.3