Changes between Initial Version and Version 1 of Ticket #14143
- Timestamp:
- Aug 20, 2010, 7:10:32 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #14143
- Property Resolution → invalid
- Property Status new → closed
-
Ticket #14143 – Description
initial v1 5 5 Basically I started a new project, configured everything and linked it to my database, sync-ed everything and got the admin working fine. Wrote a new blog app worked out the kinks by importing it in the manage.py shell until it all worked fine and added it to my installed apps and went to sync but get: 6 6 7 {{{ 8 7 9 django.core.exceptions.ImproperlyConfigured?: You haven't set the DATABASE_ENGINE setting yet. 10 11 }}} 8 12 9 13 Now I know what this means normally, but as I said I had previously synced the admin and got everything working, all that I had changed was adding the model to my installed apps. … … 11 15 Here is the exert from my settings.py: 12 16 17 18 {{{ 13 19 DATABASES = { 14 20 … … 19 25 ...... 20 26 27 }}} 21 28 About the same time manage.py shell throws up no module named messages. Checked and for some reason django.contrib.messages is no longer on the python path. Added it location to .pth file in the dist-packages, but still it cant find it. I had a similar problem importing contrib.page module and had to re-install everything but it finds pages fine now. 22 29