Oops... Btw, please CC the list (always).
On Sat, Jul 4, 2009 at 10:50 PM, till<klimpong(a)gmail.com> wrote:
> On Sat, Jul 4, 2009 at 10:09 PM, Tiago Gomes<algodas(a)gmail.com> wrote:
>> yes, I do , but the cpu HIGH Over continued, any Idea ? it ´s normal ?
>
> I hope that means the database error is gone. ;-)
>
> In general, RoundCube doesn't cause high loads for me. I'd suggest you
> run xdebug and generate some cachegrind files (through xdebug's
> profiler) to figure out what is going on. There could be a number of
> things slowing the webserver down.
>
> http://xdebug.org/docs/profiler
>
> Till
>
_______________________________________________
List info: http://lists.roundcube.net/dev/
Is there a way to localize the "Archive" folder? Regards, Roland
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi all,
I think it might be a good idea to have a database table for
plugins.
If plugins needs to store some values currently this is
done
mostly by using 'users' table 'preferences' field.
I think it's
better to have a separate table.
The following structure should be
flexible enough. ------------------------------------------------------
CREATE TABLE IF NOT EXISTS `plugins` (
`id` int(11) NOT NULL
AUTO_INCREMENT,
`user_id` int(11) DEFAULT NULL,
`contact_id` int(11)
DEFAULT NULL,
`identity_id` int(11) DEFAULT NULL,
`plugin` text,
`key`
text,
`value` text,
`timestamp` timestamp NULL DEFAULT CURRENT_TIMESTAMP
ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT
CHARSET=latin1 AUTO_INCREMENT=1
;
-------------------------------------------------------- Any comments are
welcome. Regards, Roland
_______________________________________________
List info: http://lists.roundcube.net/dev/