Django MongoDB SITE_ID错误

时间:2012-12-10 07:26:44

标签: django mongodb

我在尝试查看管理页面时遇到此错误:

InvalidId at /admin/

AutoField (default primary key) values must be strings representing an ObjectId on MongoDB (got u'1' instead). Please make sure your SITE_ID contains a valid ObjectId string.

Request Method:     GET
Request URL:    http://127.0.0.1:8000/admin/
Django Version:     1.3
Exception Type:     InvalidId
Exception Value:    

AutoField (default primary key) values must be strings representing an ObjectId on MongoDB (got u'1' instead). Please make sure your SITE_ID contains a valid ObjectId string.
...

所以我用Google搜索并认为我需要执行以下操作

 ./manage.py tellsiteid
The default site's ID is u'50c5766e62f11f41f0332e65'. To use the sites framework, add this line to settings.py:
SITE_ID=u'50c5766e62f11f41f0332e65'

所以我把它添加到我的settings.py

DEBUG = True
TEMPLATE_DEBUG = DEBUG
SITE_ID = u'50c5766e62f11f41f0332e65'
...

我仍然收到相同的错误消息。我应该运行syncdb还是重启服务器?因为我已经完成了两个并且仍然遇到同样的错误。

修改

我已经尝试在Python shell中查看SITE_ID的值,果然......

$ python manage.py shell
Python 2.7.3 (default, Aug  1 2012, 05:14:39) 
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
>>> from concepts.settings import *
>>> SITE_ID
1

但是git diff清楚地表明我已经更改了设置文件,对吗?

$ git diff
diff --git a/settings.py b/settings.py
index 586ea3a..bb069ed 100644
--- a/settings.py
+++ b/settings.py
@@ -2,6 +2,7 @@

 DEBUG = True
 TEMPLATE_DEBUG = DEBUG
+SITE_ID = u'50c5766e62f11f41f0332e65'

 ADMINS = (
     # ('Your Name', 'your_email@example.com'),
 ...

我在这里做错了什么?

2 个答案:

答案 0 :(得分:5)

噢,傻傻的我。这些代码行稍后出现在settings.py

# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html
LANGUAGE_CODE = 'en-us'

SITE_ID = 1

# If you set this to False, Django will make some optimizations so as not
# to load the internationalization machinery.
USE_I18N = True
...

所以我只需将那里的1更改为u'50c5766e62f11f41f0332e65',现在就可以了!

答案 1 :(得分:0)

我遇到了同样的问题,但即使我在 settings.py 中更改了SITE_ID,问题仍然存在。我评论了INSTALLED_APPS中的'django.contrib.sites'行,然后syncdb正确完成(这些网站应用程序在我看来是一个几乎没有人需要的应用程序......如此快速和干净的解决方案:))