Opened 17 years ago

Closed 17 years ago

#3423 closed (duplicate)

admin zone error

Reported by: aribao@… Owned by: Adrian Holovaty
Component: Core (Management commands) Version: 0.95
Severity: Keywords: login error
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Hello, I'm using django 0.95.1 and I got this error in when I try to log in the admin zone:
Traceback (most recent call last):
File "/var/lib/python-support/python2.4/django/core/handlers/base.py" in get_response

  1. response = callback(request, *callback_args, callback_kwargs)

File "/var/lib/python-support/python2.4/django/contrib/admin/views/decorators.py" in _checklogin

  1. if request.user.is_authenticated() and request.user.is_staff:

File "/var/lib/python-support/python2.4/django/contrib/auth/init.py" in get_user

  1. user_id = request.session[SESSION_KEY]

File "/var/lib/python-support/python2.4/django/contrib/sessions/middleware.py" in getitem

  1. return self._session[key]

File "/var/lib/python-support/python2.4/django/contrib/sessions/middleware.py" in _get_session

  1. self._session_cache = s.get_decoded()

File "/var/lib/python-support/python2.4/django/contrib/sessions/models.py" in get_decoded

  1. encoded_data = base64.decodestring(self.session_data)

TypeError at /admin/
a2b_base64() argument 1 must be string or read-only character buffer, not array.array

I have tested it with python 2.4 and 2.5

Could you help me please?

Thank you.

Change History (3)

comment:1 by anonymous, 17 years ago

Resolution: invalid
Status: newclosed

comment:2 by James Bennett, 17 years ago

Resolution: invalid
Status: closedreopened

Reopening so I can dupe this out.

comment:3 by James Bennett, 17 years ago

Resolution: duplicate
Status: reopenedclosed

Duplicate of #2335.

Note: See TracTickets for help on using tickets.
Back to Top