On Aug 4, 8:05 pm, David Reynolds <[EMAIL PROTECTED]> wrote:
> On 4 Aug 2007, at 6:00 am, Kenneth Gonsalves wrote:
>
> > could you mention what exactly the problems you are facing - as i
> > mentioned, on one site i have faced the problem of the initial screen
> > in admin loading with the fields of the admin screen of the previous
> > site accessed in another browser tab. As mentioned I felt that this
> > is a browser cache problem as the two sites are practically identical
> > and username and password are the same for the two sites. But the
> > problem goes away after any action is performed.
>
> I've seen sites appearing in place of another site, mostly. In most
> cases it's
> only gone away after a restart of apache.

In your Apache configuration, do you have multiple VirtualHost
definitions for sites under the same parent domain and have a
ServerAlias directive in any which contains a wildcard which would
match a different VirtualHost containers ServerName directive? For
example:

  <VirtualHost *:80>
  ServerName www.site.com
  ...
  </VirtualHost>

  <VirtualHost *:80>
  ServerName site.com
  ServerAlias *.site.com
  ...
  </VirtualHost>

Do the mixing up of pages always relate to the virtual hosts which
contain the ServerAlias and the alternate virtual host the ServerAlias
matches, or are they totally unrelated sites with totally different
domain names?

Graham


--~--~---------~--~----~------------~-------~--~----~
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