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