Hello-- I'm in the painful position of having to get a production Django site hosted on a windows machine... My setup: Windows 7 Apache 2.2 Python 2.6 mod_wsgi 3.3
In my httpd.conf: WSGIScriptAlias /testsite/ C:/django/testsite/apache/django.wsgi Visiting http://localhost/testsite shows the home page correctly When I go to http://localhost/testsite/admin, I see this message in the error log: [error] [client 127.0.0.1] Target WSGI script not found or unable to stat: C:/django/testsite/apache/django.wsgiadmin As an experiment, when I change the conf to vend a static file as so: Alias /testsite/ C:/django/testsite/apache/django.wsgi [error] [client 127.0.0.1] File does not exist: C:/django/testsite/ apache/django.wsgiadmin Likewise when I visit http://localhost/testsite/test: [error] [client 127.0.0.1] File does not exist: C:/django/testsite/ apache/django.wsgitest I'm a novice apache user; can someone please explain why this happens & how I can fix it? Thanks! -Alan -- 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 django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.