I have been working with version .95, and now I also need to be able to use .91 on my Windows dev box to support an older app.
Not sure how to accomplish this with Apache/modpy or even with the built-in dev server. Any guidance on how to accomplish this would be greatly appreciated! Not sure if I'm on the right path with this: <VirtualHost localhost:8260> DocumentRoot c:/dev/htdocs/testsite.8260/ ServerName localhost <Location "/"> SetEnv PYTHONPATH C:/dev/tools/Python24/Lib/site-packages/Django-0.91-py2.4.egg/django SetHandler python-program PythonPath "['C:\dev\python_root'] + sys.path" PythonHandler django.core.handlers.modpython SetEnv DJANGO_SETTINGS_MODULE testsite.settings PythonDebug On PythonInterpreter testsite </Location> <Location "/media/"> SetHandler None </Location> <LocationMatch "\.(jpg|gif|png)$"> SetHandler None </LocationMatch> </VirtualHost> --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---