Python noob,因为这是我的第一个项目,所以请原谅我的不熟悉。
该网站运行良好,直到我在我的应用程序上单击“注销”。之后,网站会给我这个错误:DoesNotExist at /login/ 网站匹配查询不存在。
我到处搜索,我得到的唯一解决方案与设置站点框架、SITE_ID 等有关。我认为我计算机上的这些项目很好,但我找不到帮助我检查它们的演练/指南。
谁能告诉我问题是什么以及如何解决?提前致谢:3
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
'NAME': '/home/dotcloud/nhs.db', # Or path to database file if using sqlite3.
'USER': '', # Not used with sqlite3.
'PASSWORD': '', # Not used with sqlite3.
'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '', # Set to empty string for default. Not used with sqlite3.
}
}