AD account info cannot be showed correctly

Moderator: crythias

Locked
adamjwchen
Znuny newbie
Posts: 15
Joined: 27 Aug 2010, 05:06
Znuny Version: 4.0.4

AD account info cannot be showed correctly

Post by adamjwchen »

Hi,
I have OTRS 3.1.10 installed on CentOS 6.3. I also setup the LDAP Active Directory sync. I found out the synced account information such as last name and first name in Chinese cannot be displayed correct. Is there any solution I can do to fix the problem.
You do not have the required permissions to view the files attached to this post.
OTRS 4.0.4
CentOS 6 with Active Directory authentication
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: AD account info cannot be showed correctly

Post by crythias »

Yes, check this:

Code: Select all

           # if both your frontend and your LDAP are unicode, use this:
            SourceCharset => 'utf-8',
            DestCharset   => 'utf-8',
            # if your frontend is unicode and the charset of your
            # ldap server is iso-8859-1, use these options.
            # SourceCharset => 'iso-8859-1',
            # DestCharset => 'utf-8',
Edit: it may not be iso-8859-1, but you'd be more aware of the encoding than I for Chinese.
or you may need to change the protocol:

Code: Select all

            Params => {
                port => 389,
                timeout => 120,
                async => 0,
                version => 3, #<-- this may be helpful if you didn't include it.
            },
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Locked