Hello, I set up a windows XP(python 2.5, apache 2.2) startproject called myprograms and used this code in http.conf (this works and server starts):
SetHandler python-program PythonPath "['C:/django'] + sys.pat" PythonHandler django.core.handlers.modpython SetEnv DJANGO_SETTINGS_MODULE myprograms.settings PythonDebug On I then set up an application under myprograms called cpssite and rewrote the http.conf code to this: <Directory "/"> SetHandler python-program PythonPath "['C:/django'] + sys.pat" PythonHandler django.core.handlers.modpython SetEnv DJANGO_SETTINGS_MODULE myprograms.settings PythonDebug On </Directory> <Directory "/cpssite/"> SetHandler python-program PythonHandler django.core.handlers.modpython SetEnv DJANGO_SETTINGS_MODULE cpssite.settings PythonInterpreter cpssite PythonDebug On </Directory> Now the server quits at child. Any help is much appreciated. May --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---