#2335: Admin area doesn't work at win32 python2.4.3 when followed instructions
from Tutorial part 2. code revision 3336 (HEAD for now)
------------------------------------------+---------------------------------
Reporter: [EMAIL PROTECTED] | Owner: adrian
Type: defect | Status: new
Priority: normal | Milestone:
Component: Admin interface | Version: SVN
Severity: normal | Keywords:
------------------------------------------+---------------------------------
settings.py
{{{
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'mysite.polls',
'django.contrib.admin'
)
}}}
urls.py
{{{
urlpatterns = patterns('',
# Example:
# (r'^mysite/', include('mysite.apps.foo.urls.foo')),
# Uncomment this for admin:
(r'^admin/', include('django.contrib.admin.urls')),
)
}}}
db synced, server restarted, got admin area login form at /admin/ local
url
logged in as superuser, got error:
{{{
TypeError at /admin/
a2b_base64() argument 1 must be string or read-only character buffer, not
array.array
Request Method: GET
Request URL: http://127.0.0.1:8000/admin/
Exception Type: TypeError
Exception Value: a2b_base64() argument 1 must be string or read-
only character buffer, not array.array
Exception Location: c:\python24\lib\base64.py in decodestring, line
319
}}}
--
Ticket URL: <http://code.djangoproject.com/ticket/2335>
Django <http://code.djangoproject.org/>
The web framework for perfectionists with deadlines.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates
-~----------~----~----~----~------~----~------~--~---