On Feb 8, 8:43 am, Richard Jones <[EMAIL PROTECTED]> wrote: > I have noticed that apache's error log has tons of these entries at > random (avg. 5 minutes) intervals: > > [Thu Feb 07 14:08:11 2008] [notice]mod_python: (Re)importing module > 'django.cor > e.handlers.modpython' > > The dates of these log entries don't exactly match the dates of the > error emails though.
You can ignore these messages from mod_python. You will see them every time Apache starts up a new child process for handling requests. It is just telling you that it is importing handler for mod_python for first time for that process. If you were using mod_python 3.3.1, instead of an old obsolete version of mod_python, you likely wouldn't even see them, as mod_python shouldn't have really ever been making sys.path modules reloading candidates as it causes too many problems. The newest version of mod_python addresses the problems around that by separating sys.path imports from its own. Graham --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" 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-users?hl=en -~----------~----~----~----~------~----~------~--~---

