繁体   English   中英

Django MongoDB SITE_ID错误

[英]Django MongoDB SITE_ID error

尝试查看管理页面时出现此错误:

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

所以我四处搜寻,发现我需要执行以下操作

 ./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'),
 ...

我在这里做错了什么?

哦,愚蠢的我。 这些代码行稍后出现在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' ,现在可以使用了!

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM