请问一下
我使用的是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>