How can i install and activate new plugins in roundcube?

i am trying to install a calendar for roundcube

I do it in the following way:

I put the unzipped folder in the /etc/roundcube/plugins folder

I edit the file /etc/roundcube/config.inc.php

I add the name of the plugin plugin in $config[‘plugins’] = array(’‘password’, ‘newmail_notifier’, ‘zipdownload’, ‘calendar’,);

I close session in rouudcube and when I re-enter the plugin is not activated

What am I doing wrong? Is there a special way to make roudcube plugins work in hestiacp?

Extract folder in /var/lib/roundcube/pluigns

And edit the file in /etc/roundcube/config.inc.php

If the plugin has a config file create it in /etc/roundcube/plugins and symblolic link it …

For example:

    cp -f $HESTIA_INSTALL_DIR/roundcube/hestia.php $RC_INSTALL_DIR/plugins/password/drivers/
    mkdir -p $RC_CONFIG_DIR/plugins/password
    mkdir -p $RC_CONFIG_DIR/plugins/newmail_notifier
    mkdir -p $RC_CONFIG_DIR/plugins/zipdownload
    
    # Allow changes to the respective config / Create symlinks to /etc/roundcube/ 
    cp -f $HESTIA_INSTALL_DIR/roundcube/config.inc.php $RC_CONFIG_DIR/plugins/password/config.inc.php
    ln -s $RC_CONFIG_DIR/plugins/password/config.inc.php ./plugins/password/config.inc.php
    cp -f $HESTIA_INSTALL_DIR/roundcube/plugins/config_newmail_notifier.inc.php $RC_CONFIG_DIR/plugins/newmail_notifier/config.inc.php
    ln -s $RC_CONFIG_DIR/plugins/newmail_notifier/config.inc.php ./plugins/newmail_notifier/config.inc.php
    cp -f $HESTIA_INSTALL_DIR/roundcube/plugins/config_zipdownload.inc.php $RC_CONFIG_DIR/plugins/zipdownload/config.inc.php
    ln -s $RC_CONFIG_DIR/plugins/zipdownload/config.inc.php ./plugins/zipdownload/config.inc.php

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.