Re: Need help with book tutorial

2007-12-17 Thread intercoder
Thanks Jim for your help. I have decided to set up one of the database engines. :-) On Dec 17, 11:13 am, intercoder <[EMAIL PROTECTED]> wrote: > So, should I make a file in the settings.py file called > django_session, or something like that? > > Thanks again.:-) > > On Dec 13, 2:01 pm, jim

Re: Need help with book tutorial

2007-12-17 Thread intercoder
So, should I make a file in the settings.py file called django_session, or something like that? Thanks again.:-) On Dec 13, 2:01 pm, jim <[EMAIL PROTECTED]> wrote: > Even if your simple app dosen't do anything with the database, django > still needs those values populated in the settings.py

Re: Need help with book tutorial

2007-12-13 Thread jim
Even if your simple app dosen't do anything with the database, django still needs those values populated in the settings.py file as the applications inside the INSTALLED_APPS requires it. e.g. by default your settings.py will contain: INSTALLED_APPS = ( 'django.contrib.auth', 'django.con

Need help with book tutorial

2007-12-13 Thread intercoder
I would like a little help in trying to figure out why my /now/ web page is not working. I am running Django 0.96 I followed all the instructions from the beginning of the book to the letter as far as I can tell. I have all the files that are required according to Chapter 2, Starting a project.