最近我問了一個question關於apache/mod_wsgi中的一個錯誤來識別python腳本目錄。 社區很好地回答了導致安裝成功的問題。現在我有一個不同的錯誤,服務器守護程序(當然,在技術上是一個Windows服務,我說番茄你說...)沒有發現任何的車型,下面是完整的回溯:在Apache上運行的Django錯誤/ mod_wsgi
環境:
Request Method: GET
Request URL: `http://localhost/polls/`
Django Version: 1.0.2 final
Python Version: 2.6.2
Installed Applications:
['django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.admin',
'mysite.polls']
Installed Middleware:
('django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware')
模板錯誤: 在模板C:\用戶\馬科斯\文件\ djangotemplates \調查\調查_
list.html,誤差在1號線 捉住而渲染的異常:沒有這樣的表:polls_poll
1 : {% if object_list %} 2 : <ul> 3 : {% for poll in object_list %} 4 : <li> <a href="{{poll.id}}/">{{ poll.question }} </a> </li> 5 : {% endfor %} 6 : </ul> 7 : {% else %} 8 : <p>No polls are available.</p> 9 : {% endif %} 10 :
Tra ceback:
File "C:\Python26\lib\site-packages\django\core\handlers\base.py" in get_response 86. response = callback(request, *callback_args, **callback_kwargs) File "C:\Python26\lib\site-packages\django\views\generic\list_detail.py" in object_list 101. return HttpResponse(t.render(c), mimetype=mimetype) File "C:\Python26\lib\site-packages\django\template\__init__.py" in render 176. return self.nodelist.render(context) File "C:\Python26\lib\site-packages\django\template\__init__.py" in render 768. bits.append(self.render_node(node, context)) File "C:\Python26\lib\site-packages\django\template\debug.py" in render_node 81. raise wrapped
Exception Type: TemplateSyntaxError at /polls/
Exception Value: Caught an exception while rendering: no such table: polls_poll
某處有人建議我使用manage.py dbshell和腳本回應:
錯誤:您似乎沒有安裝「sqlite3的」計劃或您的路徑上。
但仍然Django runserver完美運行該應用程序。我沒有看到環境中發生了什麼變化,以至於很難將網絡應用程序搞砸。請幫忙!
已經這樣做了,沒有發生。我認爲該腳本沒有發現任何錯誤 – marcoslhc 2009-07-29 22:42:15