Roundcube Community Forum

 

I can't get the Archive plugin to work

Started by espirates, July 02, 2013, 08:10:28 PM

Previous topic - Next topic

espirates

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 ?

SKaero


espirates

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

SKaero

That shouldn't be related, can you post your main.inc.php?

espirates

#4
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)