On 3/28/06, Siah <[EMAIL PROTECTED]> wrote:
>
> I don't think that's it.  My django site is very generic.  It has to be
> some sort of configuration I am missing.
>
> Any other ideas?
>

That sounds like the caching middleware is in effect. The settings
relating to this look something like this:

MIDDLEWARE_CLASSES = (
    ....
    "django.middleware.cache.CacheMiddleware",
    ....
)

CACHE_BACKEND = translucentcode.config.cache_backend
CACHE_MIDDLEWARE_SECONDS = 300
CACHE_MIDDLEWARE_KEY_PREFIX = "main"

You can spot it having an effect on admin when the login page seems to
prompt you for a password a couple of times and when the admin
messages at the top of the screen only appear on pages you've visited
for the first time.

Does anyone know how to selectively disable caching? I can't seem to
stop it caching my admin section.

cheers,
  Michael

--~--~---------~--~----~------------~-------~--~----~
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