On May 28, 10:16 pm, luper rouch <luper.ro...@gmail.com> wrote:
> By default, dates are formated in English (things like .strftime("%A")
> return days names in English).
>
> I tried to put locale.setlocale(locale.LC_TIME, 'fr_FR.UTF-8') in the
> settings file and it works well on the development server. The problem
> is under mod_python dates are printed in the selected locale for a
> while (~2 minutes), then for some strange reason I get English dates
> again.
>
> Maybe there is a mod_python setting to permanently set the locale ?

It is likely because you have some other application also being hosted
under the same Apache, be it a Python web application, or even a PHP
application, which is changing the locale settings.

This is an issue with mod_wsgi as well and described in:

  
http://code.google.com/p/modwsgi/wiki/ApplicationIssues#Timezone_and_Locale_Settings

For mod_wsgi, if you need to run an application with different
timezone, locale or language settings than other applications, you
must isolate that application into its own process group using
mod_wsgi daemon mode. You can't do this with mod_python of mod_wsgi
embedded mode.

Graham
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to