- This topic has 9 replies, 3 voices, and was last updated 10 years, 8 months ago by support-octavio.
-
AuthorPosts
-
lemorlennyMemberHi, I read some records from a MySql database where I have some text fields wrote in Italian language. This text contains some accented letters like ‘èàòù’. When I put this fields in a text area in MobiOne the accented letters are replaced with a question mark. I tried to replace the letters with “ ,è,è” etc without success.
How can I solve my problem?.
Regards.
Lenny.
support-octavioMemberHi lemorlenny,
Could you share the device model and OS that you are using and getting this results?
I did a small test and couldn’t replicate it.
lemorlennyMember@support-octavio wrote:
Hi lemorlenny,
Could you share the device model and OS that you are using and getting this results?
I did a small test and couldn’t replicate it.Thank for your reply,
Actually I test an Android 4.0.4 on a Mediacomm tablet but I already verified the same behaviour on other Android device and Android release.
I verified that the problem start in the Ajax data encoding so I am in inspecting the Ajax configuration about the international settings.Have some suggestions about that?
Regards.
support-octavioMemberHi,
Can you share a snippet of code or attach an example file so we can give it a look?
lemorlennyMember@support-octavio wrote:
Hi,
Can you share a snippet of code or attach an example file so we can give it a look?
I receive this when try to post my reply:
Forbidden
You don’t have permission to access /support-genuitec/posting.php on this server.
Apache/2.2.0 (Fedora) Server at http://www.genuitec.com Port 80Perhaps because it contains SQL syntax? I surrounded it in ‘code’ statement.
I add my complete message as attachment.
Regards.
Attachments:
You must be logged in to view attached files.
support-octavioMemberHi,
>Perhaps because it contains SQL syntax? I surrounded it in ‘code’ statement.
That is the most probably reason. Please attach a sample project that we can take a look.
lemorlennyMember@support-octavio wrote:
Hi,
>Perhaps because it contains SQL syntax? I surrounded it in ‘code’ statement.
That is the most probably reason. Please attach a sample project that we can take a look.I’ve already attach in my previous post, i hope is enough.
Regards.
support-michaelKeymasterA few additional questions:
1) how do you know the data is saved with the proper charset encoding in DB?
Have you confirmed it using something like phpadmin or similar db browser utility? This question is to confirm this is not a garage-in, garbage-out situation which can easily happen.2) if #1 is returning text data with italian charset then you can focus on the problem being in your php somewhere. I’m not a php guy but in other server side technologies you set define the locale/charset. Have you searched to see if you are configuring your php script correctly for the lang?
lemorlennyMember@support-michael wrote:
A few additional questions:
1) how do you know the data is saved with the proper charset encoding in DB?
Have you confirmed it using something like phpadmin or similar db browser utility? This question is to confirm this is not a garage-in, garbage-out situation which can easily happen.2) if #1 is returning text data with italian charset then you can focus on the problem being in your php somewhere. I’m not a php guy but in other server side technologies you set define the locale/charset. Have you searched to see if you are configuring your php script correctly for the lang?
I solved forcing the UTF8 characters coding after opening database:
mysql_connect($dbhost, $dbuser, $dbpass); $charset = "UTF8"; if( ! mysql_set_charset("UTF8") ){ die("mysql_set_charset($charset): unknown charset"); }
now all my national special characters are correct.
Regards
support-octavioMemberHi lemorlenny,
Glad your problem is solved. Thanks for sharing your resolution.
-
AuthorPosts