Ich habe Windows XP/Django/apache/mod_python arbeiten auf localhost. Alle Teile funktionieren mit Ausnahme des Admin-CSS, das nicht gerendert wird. Der Admin funktioniert, aber keine html-Formatierung. Ich habe Ergänzungen gemacht in:
settings.py
INSTALLED_APPS
'django.contrib.admin',
urls.py
from django.contrib import admin
admin.autodiscover()
(r'^admin/(.*)', admin.site.root),
conf/http.conf
<Location "/">
SetHandler python-program
PythonPath "['C:/django'] + sys.path"
PythonHandler django.core.handlers.modpython
SetEnv DJANGO_SETTINGS_MODULE mysite.settings
PythonDebug On
</Location>
<Location "/cpssite/">
SetHandler python-program
PythonHandler django.core.handlers.modpython
SetEnv DJANGO_SETTINGS_MODULE myapplication.settings
PythonInterpreter /myapplication
PythonDebug On
</Location>
Ich bin verblüfft. Gibt es mehr Code, den ich irgendwo hinzugefügt haben sollte?