I have build a website in three languages and I want to use caching. I
have read the documentation thouroughly. I also read the source code
repository and the django newsgroups.

I am very confused about the order in which to put all the Middleware
classes.

Does anybody know what the right order should be of the following 4
middleware classes?

MIDDLEWARE_CLASSES = (
        "django.middleware.sessions.SessionMiddleware",
        "django.middleware.cache.CacheMiddleware",
        "django.middleware.locale.LocaleMiddleware",
        "django.middleware.common.CommonMiddleware",
)

Until now every order I tried does not work. When you switch to another
language, the switch does not work or while browsing the site you will
end up with pages in the wrong language.

As soon as I switch of the CacheMiddleware everything works perfectly.

Thanks,

Berry


--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to