Hi all,
I have a little problem...
An internal error occured while sending mails, with special chars ( for example: jőrgensson.jpg)
roundcube version: 0.4
mysql Server version: 5.0.77-0.dotdeb.0 (Dotdeb)
What can i do?
Read: http://trac.roundcube.net/ticket/1487049
I've tried modding .htaccess:
php_flag suhosin_simulation Off
It doesn't work for me...:(
What, and where modifying?
sorry, i'm lame.
ps: PHP 5.2.13-0.dotdeb.1 with Suhosin-Patch 0.9.7 (cli) (built: Apr 19 2010 13:26:34)
mysql> SHOW CREATE TABLE session;
| session | CREATE TABLE `session` (
`sess_id` varchar(40) NOT NULL default '',
`created` datetime NOT NULL default '0000-00-00 00:00:00',
`changed` datetime NOT NULL default '0000-00-00 00:00:00',
`ip` varchar(40) NOT NULL default '',
`vars` text NOT NULL,
PRIMARY KEY (`sess_id`),
KEY `changed_index` (`changed`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 |
The end solution in the ticket was to change the sessions table (in the database) charset for all of the columns to utf8.
It works!
Thank you for your help!