Page 1 of 1

Location of Roundcube config file?

Posted: Fri May 19, 2017 11:07 am
by youradds
Hi,

I'm trying to enable the zipdownload plugin in RoundCube (so you can download all the files in one go). I'm on Ubuntu 16.04 LTE. According to this page:

https://vestacp.com/docs/#config-log-lo ... ian-ubuntu

The config files are at:

Code: Select all

/etc/roundcube/main.inc.php
/etc/roundcube/db.inc.php
/etc/apache2/conf.d/roundcube 
The closest I have is:

Code: Select all

/etc/roundcube/defaults.inc.php
/etc/roundcube/config.inc.php
Both of them have:

Code: Select all

$rcmail_config['plugins'] = array('password','zipdownload');
...so why doesn't it show for me in RoundCube. Am I looking at the wrong config file?

Cheers

Andy

Re: Location of Roundcube config file?

Posted: Fri May 19, 2017 12:49 pm
by youradds
OK, well I'm still not 100% sure which file it was - but it turned out to be a server issue

The PHP version installed didn't have libzip4 compiled with it, so I re-run with:

Code: Select all

sudo apt-get install --reinstall php7.0-common
Now recognises the plugin and gives a "Download All Attachment" button :)

Cheers

Andy