I have found the source of the problem. When running the built in dev server, I used the command "python manage.py testserver". This command seems to create a new database, with no user records, and run the server using that. This means that loging in is impossible as there are no users to log in as. Running the command "python manage.py runserver" uses the database created when you run "python manage.py syncdb" and create a superuser, so you can login successfully.
Thanks for all of your suggestions, Andy On 8 Feb, 15:37, Russell Keith-Magee <freakboy3...@gmail.com> wrote: > On Mon, Feb 8, 2010 at 10:42 PM, Andy Cottell <cotta...@gmail.com> wrote: > >> > > I am new to django, and have started building a project in it. I have > >> > > tried to use theadmininterface with the project am having issues > >> > > logging in. I have setup the interface as instruced in the django > >> > > tutorial part 2, and created a new superuser and cannot use it to log > >> > > in. The user is always rejected with "Please enter a correct username > >> > > and password. Note that both fields are case-sensitive." I am using an > >> > > SQlite3 database. > > Bump! > > I'm really not sure what answer you are expecting. The error message > is telling you what is wrong - the username/password combination you > are using isn't valid. > > Either: > * You aren't using the username you specified, > * You aren't using the password you specified, or > * You haven't created a superuser account > > The only source of confusion I can think that might exist is if you > think that once you have created a superuser for the tutorial, you > don't need to create one for the superuser for your own project. > > By way of diagnosis beyond this, you haven't given us much to work > with. Have you been able to successfully complete the tutorial? How > did you go about creating your superuser account (noting that Tutorial > 2 doesn't actually contain *any* instructions for creating a superuser > - the superuser is created in Tutorial 1)? Have you tried creating > *another* superuser account (using the instructions linked in Tutorial > 2)? > > Yours, > Russ Magee %-) -- 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.