Can you paste the following database settings from your settings.py? Is it
something like this...
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'dbDev.db',
'USER': '', # Not used with sqlite3.
'PASSWORD': '',
Also try different ports and opening the server for external IPs to make
sure this isn't a network issue
C:\>manage.py runserver 0.0.0.0:11010
and then http://localhost:11010
Cheers,
André Terra
On Tue, Jul 12, 2011 at 10:16 PM, Issac Kelly wrote:
> A few things to check:
>
> Is runserver
A few things to check:
Is runserver (python manage.py runserver) running? does it crash when
you try to submit your form?
Have you done a syncdb successfully? If so, then django can connect to
your database, and that's probably not the problem.
I would guess it's something in your view (or maybe
3 matches
Mail list logo