→ aquarianboy:你的urls.py長什麼樣子呢? 04/02 11:12
試到最後, 我把tutorial上的整個貼過去了, 還是不行.. :XD
====
from django.conf.urls.defaults import *
# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('',
# Example:
# (r'^mysite/', include('mysite.foo.urls')),
# Uncomment the admin/doc line below and add 'django.contrib.admindocs'
# to INSTALLED_APPS to enable admin documentation:
# (r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
(r'^admin/', include(admin.site.urls)),
)
====
早上又試了一些, 還是不 work... 所以我決定先跳過 Part 2
但我發現 Part 3 一些新增的網頁都可以正常的回應...
就唯獨 http://127.0.0.1/admin 這一個頁面還是
====
DoesNotExist at /admin/
Site matching query does not exist.
Request Method: GET
Request URL: http://localhost:8000/admin/
Django Version: 1.3
Exception Type: DoesNotExist
Exception Value:
Site matching query does not exist.
Exception Location: D:\Python27\lib\site-packages\django\db\models\query.py
in get, line 349
Python Executable: D:\Python27\python.exe
Python Version: 2.7.0
Python Path:
['E:\\Work\\Python\\website\\mysite',
'C:\\Windows\\system32\\python27.zip',
'D:\\Python27\\DLLs',
'D:\\Python27\\lib',
'D:\\Python27\\lib\\plat-win',
'D:\\Python27\\lib\\lib-tk',
'D:\\Python27',
'D:\\Python27\\lib\\site-packages',
'D:\\Python27\\lib\\site-packages\\win32',
'D:\\Python27\\lib\\site-packages\\win32\\lib',
'D:\\Python27\\lib\\site-packages\\Pythonwin',
'D:\\Python27\\lib\\site-packages\\wx-2.8-msw-unicode']
Server time: Sat, 2 Apr 2011 12:00:01 +0800
====
請問我是不是某個環境變數, 或是路徑設定上有問題呢?
我看 part 2 裡說的, 理論上 admin 會自己找到對應的 default 位置的 html?
謝謝!
※ 編輯: skiff 來自: 114.43.187.1 (04/02 12:01)
→ skiff:做完part3, 對urlpatterns比較清楚... 感覺問題好像出在 04/02 12:47
→ skiff:include(admin.site.urls) ... 04/02 12:48
→ csieJer:Python Path裡面沒有django, 所以找不到admin? 04/04 17:23
→ csieJer:不是上面的問題, 不過把預設的Site刪掉也會有你的問題~ 04/04 18:22
推 csieJer:syncdb 沒跑到? 04/04 18:26
→ skiff:在IDLE裡, import django 是OK的.. 04/06 19:51
→ skiff:syncdb確認有跑完, 沒有錯誤訊息. 請問預設Site刪掉是指? 04/06 19:52