On 7/17/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] mysite]$ ./manage.py validate > admin.logentry: 'user' has relation with model User, which has not > been installed > admin.logentry: 'content_type' has relation with model ContentType, > which has not been installed > 2 errors found.
The admin application requires several other applications from django.contrib to also be installed -- django.contrib.auth, django.contrib.contenttypes, django.contrib.sessions and django.contrib.sites. You will need to add them all to your INSTALLED_APPS setting and run 'manage.py syncdb' to install them. All four of these applications are in the default INSTALLED_APPS list created by 'django-admin.py startproject', so I'm not sure why they'd be missing from your settings. -- "Bureaucrat Conrad, you are technically correct -- the best kind of correct." --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com 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 -~----------~----~----~----~------~----~------~--~---