DB Error: Configuration error. Unsupported database driver: roundcube

roundcube

I copied over an existing roundcube installation from one Debian wheezy system to another Debian wheezy. But I keep getting the following error in the log and empty page loads:

DB Error: Configuration error. Unsupported database driver: roundcube

The db is Mysql and it's accessible with the credentials from the given host.

Any idea what is causing this error?

Best Answer

More than likely something is wrong with your database connector string. Check in your Roundcube installation directory. Inside your config directory you should have a config.inc.php file.

Within this check your database connection string: $config['db_dsnw']

For example, with MySQL this could be:

$config['db_dsnw'] = 'mysql://dbuser:dbpassword@localhost/dbname';