I have apache+mod python locally installed with the following defined in the apache config:
<Location "/testproject"> SetHandler python-program PythonPath "['C:\DjangoProjects'] + sys.path" PythonHandler django.core.handlers.modpython SetEnv DJANGO_SETTINGS_MODULE testproject.settings PythonDebug On </Location> When I navigate to http://localhost/testproject/admin/ I receive a django 404 error noting: Django tried these URL patterns, in this order: 1. ^admin/ When I start the django server and navigate to http://localhost:8000/admin/ I access the the admin site without a problem. Apache is accessing django as I receive the django debug 404 but my paths must be wrong somewhere. Where can I troubleshoot this? thanks. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---