Hi all,

For your information, currently version 0.9 beta breaks at least the following plugins due to change in database access
- forward plugin
- vacation plugin
- aliases plugin

Error messages in log looks like :
PHP Fatal error: Class 'rcube_mdb2' not found in RCPATH/plugins/vacation/lib/drivers/sql.php on line 34

A solution if to replace for these plugins in lib/drivers/sql.php the line
$db = rcube_db::factory($dsn, '', FALSE);
by
                if (!class_exists('rcube_db')) {
                    $db = new rcube_mdb2($dsn, '', FALSE);
                } else {
                    $db = rcube_db::factory($dsn, '', FALSE);
                }
which should be compatible with both pre and post 0.9 versions.

Issues have been filled for this three plugins in respective bugtrackers on github.

Regards,

--
Sébastien BLAISOT


Le 07/01/2013 22:58, Thomas Bruederli a écrit :
Dear friends of Roundcube

We're proud to announce the beta release of the next major version
0.9.

_______________________________________________
Roundcube Development discussion mailing list
[email protected]
http://lists.roundcube.net/mailman/listinfo/dev

Reply via email to