hi,
I've a problem to configure database settings in Drupal. I will propose here some sample data:
Database Mysql:
Database: databaseName
User: user
Password: password
Server: server.com
Server Choice: mysqldb2 (in phpmyadmin I have this option and I can choose between mysqldb1 and mysqldb2 to access to the mysql server)
The error message I get is:
The mysql error was: Access denied for user: 'user@localhost' (Using password: YES).
I've tried the following lines in settings.php but I always get the same error message:
$db_url = 'mysql://user:password@localhost/databaseName';
$db_url = 'mysql://user:password@localhost/databaseName/mysqldb2';
The user and password work in phpmyadmin so I'm sure they are correct.
thanks