Hi, I am using isapi_wsgi with django, or trying to: http://code.google.com/p/isapi-wsgi/wiki/IntegrationWithDjango
I have my script exactly like the example. I created the same directories on my pc. I believe django is "trying" to work, but it cannot resolve the URLs. I have done syncdb and can run the admin pages from the developmen server. There is something about the url getting passed via IIS that django does not like: Page not found (404) Request Method: GET Request URL: http://localhost/ Using the URLconf defined in mysite.urls, Django tried these URL patterns, in this order: ^admin/ The current URL, , didn't match any of these. Is there any way to capture or print on the screen what I am sending to django that it cannot resolve so I can change my urls.py? I have tried (r'^admin/', include('django.contrib.admin.urls')), to (r'^mysite/admin/', include('django.contrib.admin.urls')), and a few other variations, but it is never found. I know it's probably something very simple. I don't know what django is looking for. Thank you for any help. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---