Hi,

has anybody seen the following traceback:

Traceback (most recent call last):

  File 
"/usr/local/lib/python2.4/site-packages/django/core/servers/basehttp.py", line 
272, in run
    self.result = application(self.environ, self.start_response)

  File 
"/usr/local/lib/python2.4/site-packages/django/core/servers/basehttp.py", line 
611, in __call__
    return self.application(environ, start_response)

  File "/usr/local/lib/python2.4/site-packages/django/core/handlers/wsgi.py", 
line 148, in __call__
    response = self.get_response(request.path, request)

  File "/usr/local/lib/python2.4/site-packages/django/core/handlers/base.py", 
line 59, in get_response
    response = middleware_method(request)

  File "/usr/local/lib/python2.4/site-packages/django/middleware/cache.py", 
line 48, in process_request
    if self.cache_anonymous_only and request.user.is_authenticated():

AttributeError: 'WSGIRequest' object has no attribute 'user'


This are my Cache-settings:


CACHE_BACKEND = 'memcached://127.0.0.1:11211/'
CACHE_MIDDLEWARE_SECONDS = 600
CACHE_MIDDLEWARE_ANONYMOUS_ONLY = True


MIDDLEWARE_CLASSES = (
    'django.middleware.cache.CacheMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.middleware.doc.XViewMiddleware',
)

With CACHE_MIDDLEWARE_ANONYMOUS_ONLY = False the error goes away.

Regards,
Dirk

-- 


Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen!
Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer

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