Index: includes/install.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/install.inc,v
retrieving revision 1.124
diff -u -p -r1.124 install.inc
--- includes/install.inc 13 Jan 2010 05:08:29 -0000 1.124
+++ includes/install.inc 18 Jan 2010 20:30:55 -0000
@@ -379,7 +379,7 @@ abstract class DatabaseTasks {
$this->pass('Drupal can CONNECT to the database ok.');
}
catch (Exception $e) {
- $this->fail(st('Failed to connect to your %name database server. %name reports the following message: %error.
- Are you sure you have the correct username and password?
- Are you sure that you have typed the correct database hostname?
- Are you sure that the database server is running?
For more help, see the Installation and upgrading handbook. If you are unsure what these terms mean you should probably contact your hosting provider.', array('%error' => $e->getMessage(), '%name' => $this->name())));
+ $this->fail(st('Failed to connect to your %name database server. %name reports the following message: %error.- Does the database exist and have you entered the correct database name?
- Have you entered the correct username and password?
- Have you entered the correct database hostname?
- Is the database server running?
', array('%error' => $e->getMessage(), '%name' => $this->name())));
return FALSE;
}
return TRUE;