#5837: Multiple Django Apps on single Apache2 server occasionally load incorrect
URLS file
----------------------------------+-----------------------------------------
Reporter: [EMAIL PROTECTED] | Owner: nobody
Status: closed | Component: HTTP handling
Version: SVN | Resolution: invalid
Keywords: | Stage: Unreviewed
Has_patch: 0 | Needs_docs: 0
Needs_tests: 0 | Needs_better_patch: 0
----------------------------------+-----------------------------------------
Changes (by Karen Tracey <[EMAIL PROTECTED]>):
* status: new => closed
* resolution: => invalid
Comment:
It's a little hard to be sure with the screwy formatting, but I cannot see
that you have followed this advice from the doc page you linked:
{{{
If you need to put two Django installations within the same VirtualHost,
youll need to take a special precaution to ensure mod_pythons cache
doesnt mess things up. Use the PythonInterpreter directive to give
different <Location> directives separate interpreters:
<VirtualHost *>
ServerName www.example.com
# ...
<Location "/something">
SetEnv DJANGO_SETTINGS_MODULE mysite.settings
PythonInterpreter mysite
</Location>
<Location "/otherthing">
SetEnv DJANGO_SETTINGS_MODULE mysite.other_settings
PythonInterpreter mysite_other
</Location>
</VirtualHost>
The values of PythonInterpreter dont really matter, as long as theyre
different between the two Location blocks.
}}}
--
Ticket URL: <http://code.djangoproject.com/ticket/5837#comment:2>
Django Code <http://code.djangoproject.com/>
The web framework for perfectionists with deadlines
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---