Changes between Version 156 and Version 157 of RemovingTheMagic
- Timestamp:
- Jun 27, 2006, 7:35:08 AM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RemovingTheMagic
v156 v157 442 442 443 443 Session middleware has moved from {{{django.middleware.sessions.SessionMiddleware}}} to {{{django.contrib.sessions.middleware.SessionMiddleware}}}. Make sure to update your {{{MIDDLEWARE_CLASSES}}} setting, if you're using sessions. 444 445 If you get the following errors upon starting the webserver: 446 {{{ 447 admin.logentry: 'user' has relation with model User, which has not been installed 448 admin.logentry: 'content_type' has relation with model ContentType, which has not been installed 449 }}} 450 you need to add the apps {{{'django.contrib.contenttypes'}}} and {{{'django.contrib.auth'}}} to your {{{INSTALLED_APPS}}}. 444 451 445 452