What version of Django are you using?, what deployment method
are you using? (mod_python, fast cgi, mod_wscgi).
--
Ramiro Morales
We had another problems with mod_python around year ago and we switched
to FastCGI. While not perfect, it does not give us any oddities like
race conditions coming from single-VM process (these times, mod_wsgi was
still maturing). May I suggest dropping mod_python and give mod_wsgi a try?
--
Jarek Zgoda
Skype: jzgoda | GTalk: zg...@jabber.aster.pl | voice: +48228430101
"We read Knuth so you don't have to." (Tim Peters)
Is the time constantly 8 hours behind or does that vary e.g. does the
offset get larger over time?
Could this perhaps be that you are assigning datetime.now() (or
equivalent) to a variable and then trying to use this? Which means
that the value of that varible will be the date/time when apache is
started/restarted (which could be at the same time everyday).
Thanks,
David
--
David Reynolds
da...@reynoldsfamily.org.uk
> The only safe way to run multiple Django instances with different
> timezone settings is to run them in separate processes using mod_wsgi
> daemon mode or fastcgi type solutions.
We are using runfcgi with protocol=ajp, with proxy_ajp on the Apache side.
Works great here.
Sander