Re: problem enabling the admin interface

2008-11-19 Thread Ben Eliott
Sounds like it could be easier to learn by building piecemeal from the ground up than working through a dodgy set up. Keep going to break through the initial stages of getting to grips with Django, it'll reward you in the end. On 19 Nov 2008, at 21:53, Bryan Oakley wrote: > > Thank you. That

Re: problem enabling the admin interface

2008-11-19 Thread Bryan Oakley
Thank you. That was certainly part of the problem. I also discovered I needed to add django.contrib.auth. And oddly, a problem where I had an admindocs (plural) directory but the admin site was looking for admindoc (singular). Eventually, with your help and some educated guesses I'm finally up an

Re: problem enabling the admin interface

2008-11-19 Thread Ben Eliott
installed apps needs 'django.contrib.sessions', http://docs.djangoproject.com/en/dev/topics/http/sessions/#topics-http-sessions On 19 Nov 2008, at 19:42, Bryan Oakley wrote: > > I inherited a django app and I'm trying to enable the admin interface > without much luck. When I try to access the a

problem enabling the admin interface

2008-11-19 Thread Bryan Oakley
I inherited a django app and I'm trying to enable the admin interface without much luck. When I try to access the admin interface I see this at the end of the error log: OperationalError: no such table: django_session Sure enough, it's not in my (sqlite) database. If I create a new database fro