請問一下
我使用的是apache2.4 + django1.4 +python1.7
但是同樣專案 我使用runserver去執行
在後台管理那邊可以看到客製化的使用者模組(userprofile)
http://imgur.com/a/U6z9H#1
但是若在apache上執行相同的專案
卻看不到userprofile
http://imgur.com/a/U6z9H#0
這問題卡好久了 請問有人知道這有可能是哪邊出問題嗎?
官網也有看到這一方面的教學
但是我中間那邊Authentication with mod_wsgi 那段看不太懂
https://docs.djangoproject.com/en/1.8/howto/deployment/wsgi/apache-auth/
在setting中也有設定
AUTH_PROFILE_MODULE = 'account.UserProfile'
而下面是我apache的設定檔
WSGIScriptAlias /wsgi "c:/mms/mms/wsgi.py"
Alias /static/ "c:/Python27/lib/site-packages/django/contrib/admin/static/"
<VirtualHost *:9000>
ServerName 192.168.10.11
<Directory "c:/mms/">
Order Deny,Allow
Allow from all
</Directory>
</VirtualHost>