Hi all,
For your information, currently version 0.9 beta breaks at least the following plugins due to change in database access
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,