Hello,

I followed step 4 from http://www.djangobook.com/en/beta/chapter21/

mysite works, but mysite3 goes not.
Is the instructions wrong?

Thanks
Frank

<VirtualHost 127.0.0.1:8080>
  ServerName cmcfrocco.stemc.org

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

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

  <Location "/media/">
    SetHandler None
  </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