@@ -157,8 +157,8 @@ protected function connect() {
}
}
else{
// Database connection failed for some other reason than the database
// not existing.
// Database connection failed for some other reason than a non-existent
// database.
$this->fail(t('Failed to connect to your database server. The server reports the following message: %error.<ul><li>Is the database server running?</li><li>Does the database exist or does the database user have sufficient privileges to create the database?</li><li>Have you entered the correct database name?</li><li>Have you entered the correct username and password?</li><li>Have you entered the correct database hostname and port number?</li></ul>',['%error'=>$e->getMessage()]));
@@ -107,8 +107,8 @@ protected function connect() {
}
}
else{
// Database connection failed for some other reason than the database
// not existing.
// Database connection failed for some other reason than a non-existent
// database.
$this->fail(t('Failed to connect to your database server. The server reports the following message: %error.<ul><li>Is the database server running?</li><li>Does the database exist, and have you entered the correct database name?</li><li>Have you entered the correct username and password?</li><li>Have you entered the correct database hostname and port number?</li></ul>',['%error'=>$e->getMessage()]));
@@ -103,8 +103,8 @@ protected function connect() {
}
}
else{
// Database connection failed for some other reason than the database
// not existing.
// Database connection failed for some other reason than a non-existent
// database.
$this->fail(t('Failed to connect to database. The database engine reports the following message: %error.<ul><li>Does the database file exist?</li><li>Does web server have permission to write to the database file?</li>Does the web server have permission to write to the directory the database file should be created in?</li></ul>',['%error'=>$e->getMessage()]));