Waylan Limberg wrote: > My guess is the problem lies in your Apache settings. Post a copy of > your mod-python settings and we'll see what we come up with.
Here you go (C:/pf/src/pfweb is the Django project directory): NameVirtualHost * <VirtualHost *> ServerName web DocumentRoot "C:/pf/src/pfweb" <Location "/admin/"> SetHandler mod_python PythonHandler django.core.handlers.modpython SetEnv DJANGO_SETTINGS_MODULE pfweb.settings PythonInterpreter admin </Location> <Location "/"> SetHandler mod_python PythonHandler django.core.handlers.modpython SetEnv DJANGO_SETTINGS_MODULE pfweb.settings PythonInterpreter apps </Location> Alias /admin-media/ "C:/Python24/Lib/site-packages/Django-0.95-py2.4.egg/django/contrib/admin/media/" <Location "/admin-media/"> SetHandler none </Location> </VirtualHost> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers -~----------~----~----~----~------~----~------~--~---