I have the latest RC and even though I have listed in the plugin section of the config file, the archive button and settings don't show up. How to get it working ?
Whats in the RoundCube error log?
Just this
PHP Warning: PHP Startup: Unable to load dynamic library '/usr/local/lib/php/extensions/no-debug-non-zts-20090626/imagick.so' - /usr/local/lib/php/extensions/no-debug-non-zts-20090626/imagick.so: cannot open shared object file: No such file or directory in Unknown on line 0
That shouldn't be related, can you post your main.inc.php?
I found out what is causing but not sure why
The only plugins I can get to work are the one listed last.
ie
$rcmail_config['plugins'] = array('archive');
$rcmail_config['plugins'] = array('filters');
in this case only the filters will work.
if I do it like this, only the archive will work.
$rcmail_config['plugins'] = array('filters');
$rcmail_config['plugins'] = array('archive');
Is there a particular way of listing out plugins?
update: got it working by listing out each plugin in the () ('filters', 'archive', etc)