Hi,
We use an external backend for customer which is LDAP (AD). It has been working well for ages, except that the accentuated characters don't display correctly. I waited before posting to see if it would be fixed in version 5 but it isn't... The accents are not displayed correctly in the "Customer Information" section in the left-bottom part of AgentTicketZoom, in the CustomerName of AgentTicketSearch, in the "Name" field of AdminCustomerUser, and maybe in other sections... anywhere the information is displayed directly from LDAP queries. Is there a solution to this problem?
Thanks,
Accents in LDAP lookup
Moderator: crythias
Re: Accents in LDAP lookup
yes, use utf8 in your configuration...
Questions: is OTRS set to utf8
is the LDAP set to utf8
is there any characterset conversion switched on in LDAP configuration of OTRS
Questions: is OTRS set to utf8
is the LDAP set to utf8
is there any characterset conversion switched on in LDAP configuration of OTRS
"Production": OTRS™ 8, OTRS™ 7, STORM powered by OTRS
"Testing": ((OTRS Community Edition)) and git Master
Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
"Testing": ((OTRS Community Edition)) and git Master
Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
Re: Accents in LDAP lookup
$Self->{'DefaultCharset'} = 'utf-8';jojo wrote:yes, use utf8 in your configuration...
Questions: is OTRS set to utf8
How would I check that?jojo wrote:is the LDAP set to utf8
I don't think so, how would I check that?jojo wrote:is there any characterset conversion switched on in LDAP configuration of OTRS
Re: Accents in LDAP lookup
The accents are also not displayed correctly on a reply.
Re: [SOLVED] Accents in LDAP lookup
I think I found the solution:
I followed this post: viewtopic.php?t=7303#p28736 and added this in my Params section:
I followed this post: viewtopic.php?t=7303#p28736 and added this in my Params section:
Code: Select all
DestCharset => 'utf-8',
SourceCharset => 'utf-8',