On Mon, 2007-08-20 at 12:17 +0200, Peter Melvyn wrote: > Hi all, > > I'm trying to migrate my Django project from dev. server to Apache on > the same machine running Windows. Content generated by Django is OK, > but no static file from DocumentRoot is served. > > My Apache & mod-python is configured this way: > > <Location "/">
Not really Django related, so I'll do this briefly... This says that this location block will be serving *everything* for this website. That is, everything starting with '/' will be processed by whatever is in the Location block. You clearly don't want this in your case. In particular, the contents of this Location block say that everything under this URL should be give to the mod_python handler, which is exactly what is happening. In this case you'll probably want to add another Location section before this one to handle things to WWW-ROOT/bizweb explicitly (whatever URL is meant to map to that filesystem location). Note (read the Apache docs) that Location sections are processed in order from top to bottom in the config file. > SetHandler python-program > PythonHandler django.core.handlers.modpython > SetEnv DJANGO_SETTINGS_MODULE bizweb.server_settings > PythonDebug On > PythonPath "[r'C:\\.WKS-PF\\PRJ\\ECLIPSE\\Django\\src'] + sys.path" > </Location> Regards, Malcolm -- Why can't you be a non-conformist like everyone else? http://www.pointy-stick.com/blog/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@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-users?hl=en -~----------~----~----~----~------~----~------~--~---