RoundCube

bueice, what buggy version are you talking about?
one of the major features of this version is the preview pane. But this is missing in the rc1 version. I not know if it is just disabled in the config or something else happen but i hope it is very important feature.
 
blueice, you can enable/disable everyhing what you want in the config file. This script isn't buggy at all and installs roundcube as it's written into install file of roundcube.
 
Smtalk, thanx for the script,

can it also be used for updating or only installing?
just run it? or is there a special handle to do just an update?

i think blueice is talking about some problems as mentioned on the roundcubeforum.net where people have problems after installing a new version.
 
Smtalk, thanx for the script,

can it also be used for updating or only installing?
just run it? or is there a special handle to do just an update?

Yes, with this script you can update roundcube webmail too, just run it again. :)
 
When will the new script be available via directadmin-server?

when i wget it its the same as a while a go: the beta2 version
 
Hello,

Try now. I was updating it on the wrong server by mistake (we've recently got a new files.directadmin.com box)

John
 
one of the major features of this version is the preview pane. But this is missing in the rc1 version. I not know if it is just disabled in the config or something else happen but i hope it is very important feature.

Preview pane and html editor are in CVS for testing the relatively experimental code, they're not included into the stable releases yet.
 
after all it didn't went fine :(

i updated from beta2 to rc1 but now when im composing email the most above selectbox, containing sender, is empty.

How to solve?
Some DB update? or something else?
I checked the preferences and identity is just sitting there being fine.

Please advice.
 
Try this in da_roundcube database:
Code:
ALTER TABLE `messages`
DROP `body`,
DROP INDEX `cache_key`,
ADD `structure` TEXT,
ADD UNIQUE `uniqueness` (`user_id`, `cache_key`, `uid`);

ALTER TABLE `identities`
ADD `html_signature` tinyint(1) default 0 NOT NULL;

ALTER TABLE `users`
DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci,
CHANGE `username` `username` VARCHAR( 128 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
CHANGE `alias` `alias` VARCHAR( 128 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL;
 
Martynas,

Where's the simple how-to for installing it? I want to put it on a new testbed.

Thanks.

Jeff
 
Where can i find the da_roundcube database with phpMyAdmin?
or whats the command line for updating table (via the file of /var/www/html/roundcube/SQL/mysql.update.sql)

Sorry, not an expert...
 
Try:
Code:
cd /var/www/html/roundcube
mysql --user=`grep "^user=" /usr/local/directadmin/conf/mysql.conf | cut -d= -f2` --password=`grep "^passwd=" /usr/local/directadmin/conf/mysql.conf | cut -d= -f2` da_roundcube < SQL/mysql.initial.sql

And tell me if it works :) If not, try this one:
Code:
cd /var/www/html/roundcube
mysql --user=`grep "^user=" /usr/local/directadmin/conf/mysql.conf | cut -d= -f2` --password=`grep "^passwd=" /usr/local/directadmin/conf/mysql.conf | cut -d= -f2` da_roundcube < SQL/mysql.update.sql
 
Last edited:
thanx for yourfast reply.

This command seems to get me into mysql because after the command i recieve a prompt: >
The only way to exit is CTRL+C
But nothing changes
 
Sorry, does not work, i get a prompt after typing the mysql -e etc.etc.
is that correct? How to escape?
 
Is it an option to delete the database da_roundcube and do a full reinstall?

What do i lose when reinstalling the database? Does the mysql user also have to be removed? (since its made by roundcube.sh) if yes how?

Hope someone can help... Thought it would be an easy upgrade .....
 
Back
Top