I am in version 1.4. I feel like this is what is happening: I open the file 
to edit it in either Emacs or BlueFish. The file seems to save properly (I 
have verified that the files are being saved to the correct directory), but 
those changes don't seem to be reflected in the files when I access them 
through Django. It is very strange, because when I open the files in an 
editor, they appear to be correct. But django is not picking up on the 
changes for some reason.
 
 

On Thursday, April 12, 2012 12:32:21 PM UTC-5, victoria wrote:

> On Thu, Apr 12, 2012 at 7:09 PM, Brandy <[email protected]> wrote:
> > I am working (again) through the tutorial part 1. I have made changes to
> > Engine and Name as specified in the instructions. However, running 
> "python
> > manage.py syncdb" continues to return "Please supply the ENGINE value." I
> > did not encounter this problem the first time I worked through this
> > tutorial.
> >
> > # Django settings for mysite project.
> >
> > DEBUG = True
> > TEMPLATE_DEBUG = DEBUG
> >
> > ADMINS = (
> >     # ('Your Name', '[email protected]'),
> > )
> >
> > MANAGERS = ADMINS
> >
> > DATABASES = {
> >     'default': {
> >         'ENGINE': 'django.db.backends.sqlite3', # Add 
> 'postgresql_psycopg2',
> > 'mysql', 'sqlite3' or 'oracle'.
> >         'NAME': 'c:/program files/bitnami
> > djangostack/mysite/sqlite3.db',                      # Or path to 
> database
> > file if using sqlite3.
> >         'USER': '',                      # Not used with sqlite3.
> >         'PASSWORD': '',                  # Not used with sqlite3.
> >         'HOST': '',                      # Set to empty string for
> > localhost. Not used with sqlite3.
> >         'PORT': '',                      # Set to empty string for 
> default.
> > Not used with sqlite3.
> >     }
> > }
> >
>
> Your settings seem correct. Which version of django are you using?
> Have you checked that the settings.py file is in the correct location
> for your django version?
>
> Django 1.4 expects this layout:
>
> mysite/
>     manage.py
>     mysite/
>         __init__.py
>         settings.py
>         urls.py
>         wsgi.py
>
> While Django 1.3 expects this:
>
> mysite/
>     __init__.py
>     manage.py
>     settings.py
>     urls.py
>
>
> Since 1.4 was released this seems one of the most common mistakes that
> could cause this error.
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Django users" group.
> > To view this discussion on the web visit
> > https://groups.google.com/d/msg/django-users/-/qnfmdfEObKAJ.
> > To post to this group, send email to [email protected].
> > To unsubscribe from this group, send email to
> > [email protected].
> > For more options, visit this group at
> > http://groups.google.com/group/django-users?hl=en.
>
>
On Thursday, April 12, 2012 12:32:21 PM UTC-5, victoria wrote:
>
> On Thu, Apr 12, 2012 at 7:09 PM, Brandy <[email protected]> wrote:
> > I am working (again) through the tutorial part 1. I have made changes to
> > Engine and Name as specified in the instructions. However, running 
> "python
> > manage.py syncdb" continues to return "Please supply the ENGINE value." I
> > did not encounter this problem the first time I worked through this
> > tutorial.
> >
> > # Django settings for mysite project.
> >
> > DEBUG = True
> > TEMPLATE_DEBUG = DEBUG
> >
> > ADMINS = (
> >     # ('Your Name', '[email protected]'),
> > )
> >
> > MANAGERS = ADMINS
> >
> > DATABASES = {
> >     'default': {
> >         'ENGINE': 'django.db.backends.sqlite3', # Add 
> 'postgresql_psycopg2',
> > 'mysql', 'sqlite3' or 'oracle'.
> >         'NAME': 'c:/program files/bitnami
> > djangostack/mysite/sqlite3.db',                      # Or path to 
> database
> > file if using sqlite3.
> >         'USER': '',                      # Not used with sqlite3.
> >         'PASSWORD': '',                  # Not used with sqlite3.
> >         'HOST': '',                      # Set to empty string for
> > localhost. Not used with sqlite3.
> >         'PORT': '',                      # Set to empty string for 
> default.
> > Not used with sqlite3.
> >     }
> > }
> >
>
> Your settings seem correct. Which version of django are you using?
> Have you checked that the settings.py file is in the correct location
> for your django version?
>
> Django 1.4 expects this layout:
>
> mysite/
>     manage.py
>     mysite/
>         __init__.py
>         settings.py
>         urls.py
>         wsgi.py
>
> While Django 1.3 expects this:
>
> mysite/
>     __init__.py
>     manage.py
>     settings.py
>     urls.py
>
>
> Since 1.4 was released this seems one of the most common mistakes that
> could cause this error.
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Django users" group.
> > To view this discussion on the web visit
> > https://groups.google.com/d/msg/django-users/-/qnfmdfEObKAJ.
> > To post to this group, send email to [email protected].
> > To unsubscribe from this group, send email to
> > [email protected].
> > For more options, visit this group at
> > http://groups.google.com/group/django-users?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/rnu9iKJ0UVgJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to