Hi Chris,
maybe it's the best to just do what the error message suggest:
"Please fill out DATABASE_NAME in the settings module before using the
database. "
Put in something like '/home/chris/projects/django-tutorial/db/db.db'
You can create your own name. Django just wants to know where it
sho
Hi Kelvin,
I just ran into that problem, too.
However the hint to MEDIA_URL was correct!
You must add the following to the very bottom of your urls.py:
if settings.DEBUG:
urlpatterns += patterns('',
(r'^static/(?P.*)$', 'django.views.static.serve',
{'document_root': 'd:sites/sgms/me
2 matches
Mail list logo