Hello
I have problem display some letters (swedish letters acctuly) when you list customer (maybe in different places aswell)
They look like this ö
When it should like this ö.
non english letters
Moderator: crythias
Re: non english letters
Are you fetching customers from ActiveDirectory?
Perhaps you should specify dest or source charset? I notice that i actually have utf-8 on both, dont remember why...
$Self->{CustomerUser} = {
Module => 'Kernel::System::CustomerUser::LDAP',
Params => {
Host => 'xxxx',
DestCharset => 'utf-8',
SourceCharset => 'utf-8',
BaseDN => 'basedn',
SSCOPE => 'sub',
UserDN => 'xxxxx',
UserPw => 'xxxx',
},
Perhaps you should specify dest or source charset? I notice that i actually have utf-8 on both, dont remember why...
$Self->{CustomerUser} = {
Module => 'Kernel::System::CustomerUser::LDAP',
Params => {
Host => 'xxxx',
DestCharset => 'utf-8',
SourceCharset => 'utf-8',
BaseDN => 'basedn',
SSCOPE => 'sub',
UserDN => 'xxxxx',
UserPw => 'xxxx',
},
--
ORTS 3.0.6, Linux, MySQL, ActiveDirectory integration for Customer.
ORTS 3.0.6, Linux, MySQL, ActiveDirectory integration for Customer.
Re: non english letters[solved]
That did it, thx!