I am having an issue with my implementation of Django. First of my DjangoAppz file directory is outside of the webroot directory. That folder contains two application folders, "tick", "ncate".
I have these two declaratives in my httpd.conf file: <Location "/ncate/manager/"> SetHandler mod_python PythonHandler django.core.handlers.modpython PythonPath "[r'w:\DjangoAppz'] + sys.path" SetEnv DJANGO_SETTINGS_MODULE ncate.settings PythonDebug On </Location> <Location "/kate/tick/"> SetHandler mod_python PythonHandler django.core.handlers.modpython PythonPath "[r'w:\DjangoAppz'] + sys.path" SetEnv DJANGO_SETTINGS_MODULE kate.settings PythonDebug On </Location> When I restart my server, and go to /ncate/manager I get the right application. But if I log out of that application and go to /kate/tick/ I get the /ncate/manager application. This will happen visa-versa. I first go to /kate/tick, logout, go to /ncate/manager and get the /kate/tick/ application. Any ideas? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---