Changes between Initial Version and Version 1 of Ticket #18058


Ignore:
Timestamp:
Apr 3, 2012, 3:58:57 PM (12 years ago)
Author:
Claude Paroz
Comment:

Please use preview next time to properly format the report.

My guess is that you are not placing the settings.py file in the right place. Please use support channels to get help before reporting a bug.
wiki:TicketClosingReasons/UseSupportChannels

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #18058

    • Property Resolutioninvalid
    • Property Status newclosed
  • Ticket #18058 – Description

    initial v1  
    11I am trying to do the tutorial with django 1.4 and I get an error doing 'python manage.py syncdb'. I am using the DATABASES as it is created and I've try to use sqlite3 and mysql backends. I tried it in windows and in unix. Rasult is always the same:
    2  raise ImproperlyConfigured("settings.DATABASES is improperly configured. "
    3 django.core.exceptions.ImproperlyConfigured: settings.DATABASES is improperly configured. Please supply the ENGINE value. Check settings documentation for more details.
     2{{{
     3  raise ImproperlyConfigured("settings.DATABASES is improperly configured. "
     4  django.core.exceptions.ImproperlyConfigured: settings.DATABASES is improperly configured. Please supply the ENGINE value. Check settings documentation for more details.
     5}}}
     6
    47But settings.py is:
     8{{{
    59DATABASES = {
    610    'default': {
     
    1317    }
    1418}
    15 
     19}}}
    1620However I have tried with previous version of Django and it works ok.
Back to Top