On Tue, 2009-01-06 at 11:59 -0800, rabbi wrote: [...] > I want to deploy my little test site though, so I've been trying to > get it running on Apache and I keep getting this error: > "OperationalError at /swenglish/ > no such table: swenglish_entry" > > The error seems to be happening on this line: > "entry_list = [e.eng_val + " = " + e.swe_val for e in Entry.objects.all > ()]"
So the error is telling you that the database table doesn't exist for the Entry model. Did you remember to run "python manage.py syncdb" after creating the models? Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@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 -~----------~----~----~----~------~----~------~--~---