Hey Guys, I know I must be doing something stupid here, but for the life of me, I can't seem to be able to get django-debug-toolbar to work - I keep getting a 404 error whenever I visit http://localhost:8000/admin/ (see [1]). I've followed the Installation instructions at http://github.com/robhudson/django-debug-toolbar. Here are the relevant sections of my settings.py:
... MIDDLEWARE_CLASSES = ( 'django.middleware.common.CommonMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'debug_toolbar.middleware.DebugToolbarMiddleware', ) ROOT_URLCONF = 'testproject.urls' ... INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.messages', 'django.contrib.admin', 'testapp', 'debug_toolbar', ) INTERNAL_IPS = ('127.0.0.1', ) and my testproject.urls.py: from django.conf.urls.defaults import * # Uncomment the next two lines to enable the admin: from django.contrib import admin admin.autodiscover() urlpatterns = patterns('', # Example: # (r'^testproject/', include('testproject.foo.urls')), # Uncomment the admin/doc line below and add 'django.contrib.admindocs' # to INSTALLED_APPS to enable admin documentation: # (r'^admin/doc/', include('django.contrib.admindocs.urls')), # Uncomment the next line to enable the admin: (r'^admin/', include(admin.site.urls)), ) This is running against 'Django version 1.2 beta 1', python 2.5.and the latest checkout of django-debug-toolbar from github (if it matters, I've symlinked the debug_toolbar folder into my site-packages). I'd really appreciate pointers as to what I'm doing wrong here. -- Best, R [1] - http://i.imgur.com/5GkiQ.png -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.