mysite works
mysite3 gives me a 404 error
I guess I still have something wrong.

Thanks
Frank

NameVirtualHost *

<VirtualHost 127.0.0.1:8080>
  ServerName mysite
  <Location "/mysite/">  
    SetHandler python-program 
    PythonPath "['C:\djangoapps'] + sys.path" 
    PythonHandler django.core.handlers.modpython 
    SetEnv DJANGO_SETTINGS_MODULE mysite.settings 
    PythonDebug On 
  </Location>
</VirtualHost>

<VirtualHost 127.0.0.1:8080>
  ServerName mysite3
  <Location "/mysite3/">  
    SetHandler python-program 
    PythonPath "['C:\djangoapps'] + sys.path" 
    PythonHandler django.core.handlers.modpython 
    SetEnv DJANGO_SETTINGS_MODULE mysite3.settings 
    PythonDebug On 
  </Location>
</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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to