Kayako logo
LiveResponse Desktop Application Discussion, troubleshooting and feedback for LiveResponse Desktop Application for Microsoft Windows.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  (#16) Old
Thomas Nimstad Offline
New Member
 
Posts: 11
Join Date: May 2007
12-07-2007, 04:00 PM

Quote:
Originally Posted by Ryan Lederman View Post
What happens if you change ALL the spots where it says ISO-8859-1 in that file to UTF-8? Does the canned stuff get synchronized properly?
Well, I will test that, but I don't think the problem is in the PHP code that generates the output. I think the problem lies within the WinAPP that parses the character data.
   
Reply With Quote
  (#17) Old
Thomas Nimstad Offline
New Member
 
Posts: 11
Join Date: May 2007
13-07-2007, 12:12 PM

Quote:
Originally Posted by Ryan Lederman View Post
What happens if you change ALL the spots where it says ISO-8859-1 in that file to UTF-8? Does the canned stuff get synchronized properly?
Tested. The missing characters are still missing.
   
Reply With Quote
  (#18) Old
Ryan Lederman Offline
Chief Operating Officer
 
Ryan Lederman's Avatar
 
Posts: 853
Join Date: May 2005
Location: Boise, Idaho
17-07-2007, 08:00 AM

Thanks Thomas, could you please check for an e-mail I just sent regarding FTP access?


Ryan Lederman (ryan.lederman ]at[ kayako.com)
----------------------------------------------------------------
---
   
Reply With Quote
  (#19) Old
Remo Offline
New Member
 
Posts: 11
Join Date: Sep 2006
Location: Sweden
About the missing charackter in swedish.. - 08-08-2007, 08:56 AM

Did you or Thomas get any closer too the problem
I have added a new case for this today (again)

Hopes for a solutions....!!
Regards Jimmy
   
Reply With Quote
  (#20) Old
Thomas Nimstad Offline
New Member
 
Posts: 11
Join Date: May 2007
15-08-2007, 10:18 AM

The problem is still there after an upgrade to 3.11.01.
   
Reply With Quote
  (#21) Old
mikenova Offline
New Member
 
Posts: 16
Join Date: Mar 2007
Almost the same problem... - 15-08-2007, 01:39 PM

My Swedish characters are working almost on the whole site.. But NOT when i'm sending emails.. Instead of "ÅÄÖ igen" i comes out "��� igen.. "

I've noticed that there are differences in the .ini files.. Some have 7bit encoding and some got 8bit encoding.. Doesn't we swedes use 8bit for ÅÄÖ?

I really don't know what i'm talking about, but i really need it to work..
   
Reply With Quote
  (#22) Old
mikenova Offline
New Member
 
Posts: 16
Join Date: Mar 2007
15-08-2007, 01:55 PM

My problem are solved ( i think anyway ).. sended a mail with ä
( html enkoding for ä ) And i got ä in my mailbox..

Tried to change between html and text in admin, but i didn't help.. So the problem is still there, does anybody know where to change that?
   
Reply With Quote
  (#23) Old
Ryan Lederman Offline
Chief Operating Officer
 
Ryan Lederman's Avatar
 
Posts: 853
Join Date: May 2005
Location: Boise, Idaho
15-08-2007, 09:01 PM

Quote:
Originally Posted by Thomas Nimstad View Post
The problem is still there after an upgrade to 3.11.01.
You should open a ticket in the Support department and request to be assigned to Mahesh Salaria. He will help you figure out what is going on.


Ryan Lederman (ryan.lederman ]at[ kayako.com)
----------------------------------------------------------------
---
   
Reply With Quote
  (#24) Old
Ryan Lederman Offline
Chief Operating Officer
 
Ryan Lederman's Avatar
 
Posts: 853
Join Date: May 2005
Location: Boise, Idaho
15-08-2007, 09:03 PM

Quote:
Originally Posted by mikenova View Post
My problem are solved ( i think anyway ).. sended a mail with ä
( html enkoding for ä ) And i got ä in my mailbox..

Tried to change between html and text in admin, but i didn't help.. So the problem is still there, does anybody know where to change that?
Please show us the contents of the encoding-related variables in /locale/en-us/en-us.php.


Ryan Lederman (ryan.lederman ]at[ kayako.com)
----------------------------------------------------------------
---
   
Reply With Quote
  (#25) Old
Thomas Nimstad Offline
New Member
 
Posts: 11
Join Date: May 2007
16-08-2007, 12:33 PM

Quote:
Originally Posted by Remo View Post
Have no swedish charackter in Live Chat when I use Canned responce
Well... I got bored waiting so I started debug it myself.

The bug is in functions_xml.php:268 where you generate a XML-structure with charset=UTF-8 but never converts the actual data to UTF-8. So I just added a utf8_encode() to the line

$_data = utf8_encode(trim($this->returnXML()));

and the problem was solved.

It's possible that in another environment the data already is in UTF-8 but in my case the data from the database is in Latin1 (ISO-8859-1).
   
Reply With Quote
  (#26) Old
Ryan Lederman Offline
Chief Operating Officer
 
Ryan Lederman's Avatar
 
Posts: 853
Join Date: May 2005
Location: Boise, Idaho
16-08-2007, 07:35 PM

Cool Thomas,

We're taking a look and we'll let you know what happens.


Ryan Lederman (ryan.lederman ]at[ kayako.com)
----------------------------------------------------------------
---
   
Reply With Quote
  (#27) Old
Roger Clark Offline
Developer
 
Roger Clark's Avatar
 
Posts: 128
Join Date: Feb 2006
Location: Columbus, OH
21-08-2007, 07:29 PM

Note that your solution would not work if the helpdesk codepage was in anything other than ISO-8859-X. Here's a better fix for people who run alternate codepages:

function echoXMLUTFWinapp()
{
global $_SWIFT;

$_data = mb_convert_encoding("UTF-8", $_SWIFT["language"]["charset"], trim($this->returnXML()));

echoWinappData($_data);
}

is


Roger Clark (roger.clark ]at[ kayako.com)
----------------------------------------------------------------
---
   
Reply With Quote
Reply

Tags
canned, charackter, chat, live, missing, responce, swedish

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
vBulletin Skin developed by: vBStyles.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46