I have a problem in OSQA. Anytime, I try to enter a user's page, "500 Error" occurs such as here: http://turkrusforum.com/users/2/mertnuhoglu/
I checked the error logs. But there was nothing there. I want to install django-debug-toolbar
and debug the problem more.
I put DEBUG = True
and INTERNAL_IPS
into settings.py
. But I still cannot see debug toolbar.
Here it says that under Apache, this problem might be related to Alias settings.
Here is VirtualHost
definition in my httpd.conf
file:
<VirtualHost *:26903>
ServerName turkrusforum.com
KeepAlive Off
WSGIDaemonProcess turkrusforum.com processes=1 python-path=/home/mertnuhoglu/webapps/otrf:/home/mertnuhoglu/webapps/otrf/osqa:/home/mertnuhoglu/webapps/otrf/lib/python2.6 threads=1 inactivity-timeout=360 display-name=[wsgi-otrf]httpd
WSGIProcessGroup turkrusforum.com
WSGIScriptAlias / /home/mertnuhoglu/webapps/otrf/otrf.wsgi
</VirtualHost>
May anyone help me to find out how to configure Alias settings?