I just tried to add this to the magic removal wiki page:

And you still might still get errors like this when running `manage.py
runserver`:

{{{
Validating models...
admin.logentry: 'user' has relation with uninstalled model User
admin.logentry: 'content_type' has relation with uninstalled model ContentType
...
}}}

Because you need to add more apps to your settings.py INSTALLED_APPS
list.  The minimal INSTALLED_APPS if you want to
use Admin seems to be:

{{{
INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.admin',
    'django.contrib.sessions',
    'django.contrib.contenttypes',
)
}}}

But was rejected with this message:

Internal Error

Rejecting spam: LED

Maybe I need to create a login or something?  I don't know, but
someone feel free to add that advice to the wiki, or make it more
clear or whatever.  That issue gave me a hard time when trying to
update my blog to use the latest magic-removed django code, until I
found this with google:

http://www.mail-archive.com/django-users@googlegroups.com/msg07017.html

Bryan

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to