Sorry to ask the obvious, but does that user have permissions for that db?
On another angle, if you physically change the db name in the config, do you get a mysql error? If you don't, it might help narrow down the problem.
Geoffrey
On Thu, 02 Mar 2006 14:05:45 +0000, Alex Pimperton alex@erus.co.uk wrote:
Geoffrey McCaleb wrote:
I had the same problem as well. It turned out that I had set the wrong
db name in the config (the username and password and host were all correct).
Geoffrey
Roundcube config:
$rcmail_config['db_dsnw'] = 'mysql://roundcube:secret@localhost/roundcube'; // postgres example: 'pgsql://roundcube:pass@localhost/roundcubemail'; // sqlite example: 'sqlite://./sqlite.db?mode=0646';
MySQL dump:
mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | gallery2 | | joomla | | mysql | | roundcube | | test | +--------------------+
This looks okay to me but I may be missing something.
Alex