I run the www.pyweek.org site and recently upgraded to the latest
release of Django (0.96.1)
I'm running under Apache + mod_python. Configuration appended to this
email.
I've observed a bunch of transient errors (perhaps 1% of page views)
that take the form:
ViewDoesNotExist: Tried diary_display in module
pyweek.challenge.views.challenge. Error was: 'module' object has no
attribute 'Manipulator'
The module definitely does have that attribute. I get this error for a
variety of modules and attribute names.
I've received one of these myself, but I see most of them in my error
email.
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.
Richard
<VirtualHost www.pyweek.org:80>
ServerName www.pyweek.org
CustomLog logs/www.pyweek.org.log combined
ErrorLog logs/www.pyweek.org.err
LogLevel debug
DirectoryIndex index.py
<Location "/">
SetHandler python-program
PythonHandler django.core.handlers.modpython
PythonPath "['/home/richard/pyweek/branches/
update_to_current_django'] + s
ys.path"
SetEnv DJANGO_SETTINGS_MODULE pyweek.settings
PythonDebug On
</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 [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
-~----------~----~----~----~------~----~------~--~---