I will start this off with " I made a stupid..."
Trying to get an oauth module to work I made the pro-move of : manage.py reset sites
This had the effect killing the admin and login functionality of my site, NEAT!
So my question is how to I get back to square one and fix what I broke.
Here is my current error when trying to display the admin tool:
DoesNotExist at /admin/
Site matching query does not exist.
Request Method: GET
Request URL: http://mdev.5buckchuck.com/admin/
Django Version: 1.3
Exception Type: DoesNotExist
Exception Value:
Site matching query does not exist.
I looked at the documentation but I am lost and tired in it: http://docs.djangoproject.com/en/1.3/ref/contrib/sites/
It seemed to indicate:
manage.py syncdb
would srt me out, ut as I recall I can't do that with the server running.
Help would be amazing. Thanks in advance.
SITE_ID, this error could indicate that someone just set that to the wrong value. (Like if it's complaining that no site withpk> 1 exists,SITE_IDis no longer the default value, and may indicate a simple issue like this.) I know this doesn't answer your issue above, but could be relevant to future searchers. – seafangs Feb 5 at 15:10