| Summary | ? replaces non-ascii chars |
| Queue | Turba |
| Queue Version | HEAD |
| Type | Bug |
| State | Not A Bug |
| Priority | 1. Low |
| Owners | |
| Requester | andrzej.dzik (at) ekspert (dot) szczecin (dot) pl |
| Created | 03/10/2008 (6452 days ago) |
| Due | |
| Updated | 03/11/2008 (6451 days ago) |
| Assigned | 03/10/2008 (6452 days ago) |
| Resolved | 03/11/2008 (6451 days ago) |
| Github Issue Link | |
| Github Pull Request | |
| Milestone | |
| Patch | No |
It have in php5 mysql_set_charset function
Look at
http://php.oregonstate.edu/manual/en/function.mysql-client-encoding.php
http://dev.mysql.com/doc/refman/5.0/en/charset-connection.html
PHP extensions don't understand "latin2" as a valid charset (try
ISO-8859-2 instead), or you have an interface charset in Horde to that
latin2 characters can't be converted losslessly. For further support
ask on the mailing list please.
$conf['sql']['phptype'] = 'mysql';
$conf['sql']['charset'] = 'latin2';
but without my patch I see ? in place of latin2 chars
State ⇒ Not A Bug
configuration
select object_name from turba_objects;
Jaś Kowalski
Turba show
Ja? Kowalski
My patch is for /usr/share/horde3/turba/lib/Driver/sql.php
after patch Turba show
Jaś Kowalski
State ⇒ Feedback
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ ? replaces non-ascii chars
Queue ⇒ Turba
Milestone ⇒
Patch ⇒ No
State ⇒ Unconfirmed
place of non-ascii chars.
Patch
77a78,80
$this->_db->query("set names ".$this->_params['charset']);
}