roundcube caledar plugin installation problem

nango

Verified User
Joined
May 13, 2006
Messages
92
Hi
I Tried to install calendar plugin for roundcube :

Code:
#yum install git php-sabre-*
#cd /tmp
#git clone https://git.kolab.org/diffusion/RPK/roundcubemail-plugins-kolab.git
#cd /var/www/html/roundcube/plugins/
#cp -r /tmp/roundcubemail-plugins-kolab/plugins/calendar .
#cp -r /tmp/roundcubemail-plugins-kolab/plugins/libcalendaring .
#cd calendar
#cp config.inc.php.dist config.inc.php
First backed up db: #mysqldump --user da_admin --password="123456" da_roundcube > /var/www/html/roundcube/plugins/calendar/da_roundcubeBK.sql
Restore plugin db:
#mysql --user=da_admin --password="123456" da_roundcube < /var/www/html/roundcubemail-1.3.1/SQL/mysql.initial.sql
#cd ../libcalendaring
#vi libvcalendar.php
Add this lines:
spl_autoload_register(function ($class) {
    if (strpos($class, 'Sabre\\')===0) {
        $file = '/usr/share/php/'.str_replace('\\', '/', $class).'.php';
        @include $file;
    }
}

But nothing happened in roundcube. whats problem? is there anyway to install plugins from CB2?
 
I think, you must add the calendar plugin in /var/www/html/roundcube/config/config.inc.php.
 
Oops :) Thank you.

I just add 'calendar', to config.inc.php and its work now.

#vi /var/www/html/roundcube/config/config.inc.php
// List of active plugins (in plugins/ directory)
$config['plugins'] = array(
'password',
'archive',
'zipdownload',
'calendar',
);
 
Last edited:
I have another problem on this plugin.

An error occurred! Failed to save changes.
What kind of permission need to save calendar? is it db problem?
 
Last edited:
I really need help with roundcube ...



it's so complicated to explain



send me a message by email or SMS so that I can explain my problem to you

phone: +33614801332

email: [email protected]



that would be really sweet and I would be really grateful.

so that one can help me by teamviewer or you control the pc


Thank you
 
Back
Top