Re: problem submitting form data to database (django)

2011-07-12 Thread Venkatraman S
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': '',

Re: problem submitting form data to database (django)

2011-07-12 Thread Andre Terra
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

Re: problem submitting form data to database (django)

2011-07-12 Thread Issac Kelly
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