I tried installing bloodhound on a new environment (debian) but still
no luck ...
As I see apache does not render python files I think the problem is in
the virtualhost configuration
As I had a warning because mod_wsgi was compiled with a different
version of Python ( 2.7.2 instead of 2.7.3 ) I recompiled
it manually and now I have no warning by Apache .
But still it's not working ...
David
echo "
<VirtualHost *:$PORT>
WSGIDaemonProcess bloodhound_tracker user=$SYSUSER
python-path=$APACHEDIR/bloodhound/installer/bloodhound/lib/python2.7/site-packages
WSGIScriptAlias /bloodhound
$APACHEDIR/bloodhound/installer/bloodhound/site/cgi-bin/trac.wsgi
<Directory $APACHEDIR/bloodhound/installer/bloodhound/site/cgi-bin>
WSGIProcessGroup bloodhound_tracker
WSGIApplicationGroup %{GLOBAL}
Order deny,allow
Allow from all
</Directory>
<LocationMatch "/bloodhound/[^/]+/login">
AuthType Digest
AuthName "Bloodhound"
AuthDigestDomain /bloodhound
AuthUserFile
$APACHEDIR/bloodhound/installer/bloodhound/environments/main/bloodhound.htdigest
Require valid-user
</LocationMatch>
</VirtualHost>
" > /etc/apache2/sites-available/bloodhound
a2ensite bloodhound
apachectl configtest && apachectl graceful
------------------------------------------------------------END-------------------------------------------------------------------------------------------------