Re: django-debug-toolbar and 404's

2010-02-12 Thread Rishabh Manocha
On Fri, Feb 12, 2010 at 10:41 PM, Rob Hudson wrote: > Can you test it by disabling the debug toolbar middleware? I've > duplicated your exact settings as much as I can and it's working for > me. If disabling the middleware makes the admin appear, then it would > seem something

Re: django-debug-toolbar and 404's

2010-02-12 Thread Rob Hudson
Can you test it by disabling the debug toolbar middleware? I've duplicated your exact settings as much as I can and it's working for me. If disabling the middleware makes the admin appear, then it would seem something in the toolbar is causing the problem. And you are right... those settings

Re: django-debug-toolbar and 404's

2010-02-11 Thread Rishabh Manocha
On Thu, Feb 11, 2010 at 11:56 AM, Mike Dewhirst wrote: > Rishab > > Maybe you haven't included any toolbar panels? > > Here is an example ... > > if TOOLBAR: >DEBUG_TOOLBAR_CONFIG = { >'INTERCEPT_REDIRECTS': TOOLBAR_REDIRECTS, >'SHOW_TOOLBAR_CALLBACK':

Re: django-debug-toolbar and 404's

2010-02-10 Thread Mike Dewhirst
Rishab Maybe you haven't included any toolbar panels? Here is an example ... if TOOLBAR: DEBUG_TOOLBAR_CONFIG = { 'INTERCEPT_REDIRECTS': TOOLBAR_REDIRECTS, 'SHOW_TOOLBAR_CALLBACK': None, } DEBUG_TOOLBAR_PANELS = (

django-debug-toolbar and 404's

2010-02-10 Thread Rishabh Manocha
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