Changes between Initial Version and Version 1 of Ticket #18058
- Timestamp:
- Apr 3, 2012, 3:58:57 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18058
- Property Resolution → invalid
- Property Status new → closed
-
Ticket #18058 – Description
initial v1 1 1 I 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 4 7 But settings.py is: 8 {{{ 5 9 DATABASES = { 6 10 'default': { … … 13 17 } 14 18 } 15 19 }}} 16 20 However I have tried with previous version of Django and it works ok.