RE: Re: utf8-problems

2010-06-04 Thread Henrik Genssen
no, developing on macos, testing and production on debian regards Henrik >reply to message: >date: 03.06.2010 12:05:02 >from: "kirian" <thomas.krem...@gmail.com> >to: "Django users" <django-users@googlegroups.com> >subject: Re: utf8-problems >

Re: utf8-problems

2010-06-03 Thread kirian
just guessing.. are you developing on a windows machine and your encoding problems occure on a linux machine? did you tried the smart_str and smart_unicode functions!? these solved all my encoding problems.. from django.utils.encoding import smart_str, smart_unicode On 3 Jun., 11:18, "Henrik

Re: utf8-problems

2010-06-03 Thread Dmitry Dulepov
Hi! Henrik Genssen wrote: > on my dev-system: > character_set_database => latin1 > > on production: > character_set_database => utf-8 > > my testsystem is the one that works. > Does the above have any influence on my requests, as both tables are utf-8? It shouldn't if your database has a

RE: Re: utf8-problems

2010-06-03 Thread Henrik Genssen
>I would also check character sets in "show create table" in both environments. output of both create table statements are equal both are tables are utf-8, collatetion utf8_general_ci >show variables like 'character_set_%' on my dev-system: character_set_database => latin1 on production:

Re: utf8-problems

2010-06-03 Thread Dmitry Dulepov
Hi! Henrik Genssen wrote: > I do have utf-8 problems again. > My dev-system works, my stage system works, too - but production does not. > And I do not see the error :-( > As I think, it is a misconfiguration problem, do we have a checklist, what > and where to search for or test? > I have seen

Re: utf8-problems

2010-06-03 Thread kanniga sivasubramanian
Yes, you are right. The mysql was not installed correctly. I uninstall that. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to

utf8-problems

2010-06-03 Thread Henrik Genssen
Hi, I do have utf-8 problems again. My dev-system works, my stage system works, too - but production does not. And I do not see the error :-( As I think, it is a misconfiguration problem, do we have a checklist, what and where to search for or test? I have seen utf problems several times on the

Re: utf8-problems

2010-06-03 Thread Fabian Rothfuchs
can you post your MySQL encoding / charset ? what kind of exceptions do you experience ? Cheers Fabian On Jun 3, 2010, at 11:18 AM, Henrik Genssen wrote: > Hi, > > I do have utf-8 problems again. > My dev-system works, my stage system works, too - but production does not. > And I do not see