? includes/database.mysqli.inc Index: includes/database.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/database.inc,v retrieving revision 1.43 diff -u -r1.43 database.inc --- includes/database.inc 25 Aug 2005 21:14:16 -0000 1.43 +++ includes/database.inc 7 Sep 2005 14:35:50 -0000 @@ -118,7 +118,7 @@ else { drupal_maintenance_theme(); drupal_set_title('Unsupported database type'); - print theme('maintenance_page', '

The database type '. theme('placeholder', $db_type) .' is unsupported. Please use either mysql for MySQL databases or pgsql for PostgreSQL databases. The database information is in your settings.php file.

+ print theme('maintenance_page', '

The database type '. theme('placeholder', $db_type) .' is unsupported. Please use either mysql for MySQL 3.x & 4.0.x databases, mysqli for MySQL 4.1.x+ databases, or pgsql for PostgreSQL databases. The database information is in your settings.php file.

For more help, see the Installation and upgrading handbook. If you are unsure what these terms mean you should probably contact your hosting provider.

'); exit; } Index: sites/default/settings.php =================================================================== RCS file: /cvs/drupal/drupal/sites/default/settings.php,v retrieving revision 1.17 diff -u -r1.17 settings.php --- sites/default/settings.php 28 Aug 2005 18:26:20 -0000 1.17 +++ sites/default/settings.php 7 Sep 2005 14:36:44 -0000 @@ -76,6 +76,7 @@ * * Database URL format: * $db_url = 'mysql://username:password@localhost/database'; + * $db_url = 'mysqli://username:password@localhost/database'; * $db_url = 'pgsql://username:password@localhost/database'; */ $db_url = 'mysql://username:password@localhost/database';