Ok setting it up on vista was impossible… ubuntu went very smoothly except the django.conf part
here’s me conf (anything with double square brackets has been edited… highlighted orange)
The alias’ were the solution for the 404′s on Django’s admin css and javascript. It just couldn’t figure out the symlinks or something… not sure.
ServerName computron
MaxRequestsPerChild 1
<location “/”>
SetHandler python-program
PythonHandler django.core.handlers.modpython
SetEnv DJANGO_SETTINGS_MODULE [[application_name]].settings
PythonPath “['/home/[[username]]/django/www/django_projects’] + sys.path”
PythonDebug On
</location>
Alias /media “/var/www/media”
<location “/media”>
SetHandler None
</location>
Alias /admin_media “/var/www/admin_media”
<location “/admin_media”>
SetHandler None
</location>
<locationmatch “.(jpg|gif|png)$”>
SetHandler None
</locationmatch>