Hi, I am trying to access a folder on my site as an Admin. I get this error message. Does anyone knows how i can fix this? thanks, Mike Traceback (innermost last): File /var/zope/lib/python/ZPublisher/Publish.py, line 150, in publish_module File /var/zope/lib/python/ZPublisher/Publish.py, line 114, in publish File /var/zope/lib/python/Zope/__init__.py, line 158, in zpublisher_exception_hook (Object: support) File /var/zope/lib/python/ZPublisher/Publish.py, line 98, in publish File /var/zope/lib/python/ZPublisher/mapply.py, line 88, in mapply (Object: manage_contents) File /var/zope/lib/python/ZPublisher/Publish.py, line 39, in call_object (Object: manage_contents) File /var/zope/lib/python/Shared/DC/Scripts/Bindings.py, line 252, in __call__ (Object: manage_contents) File /var/zope/lib/python/Shared/DC/Scripts/Bindings.py, line 283, in _bindAndExec (Object: manage_contents) File /var/zope/lib/python/App/special_dtml.py, line 172, in _exec (Object: manage_contents) File /var/zope/lib/python/DocumentTemplate/DT_In.py, line 637, in renderwob (Object: objectItems) File /var/zope/lib/python/DocumentTemplate/DT_In.py, line 763, in sort_sequence (Object: objectItems) File /var/zope/lib/python/ZODB/Connection.py, line 493, in setstate File /var/zope/lib/python/zLOG/__init__.py, line 129, in LOG File /var/zope/lib/python/ZLogger/ZLogger.py, line 17, in log_write File /var/zope/lib/python/ZLogger/stupidFileLogger.py, line 27, in __call__ File /var/zope/lib/python/ZLogger/stupidFileLogger.py, line 79, in stupid_log_write IOError: [Errno 5] Input/output error
On Thu, Dec 11, 2003 at 10:16:45AM -0700, Mike Doanh Tran wrote:
Hi,
I am trying to access a folder on my site as an Admin. I get this error message. Does anyone knows how i can fix this?
(snip)
stupid_log_write IOError: [Errno 5] Input/output error
for some reason, zope cannot write to its event log. maybe permissions, maybe there's no room, I don't know. Find the file and see if you can figure out why (for zope < 2.7, this is set with either of the STUPID_LOG_FILE or EVENT_LOG_FILE environment variable). -- Paul Winkler http://www.slinkp.com Look! Up in the sky! It's THE FLASH! (random hero from isometric.spaceninja.com)
Mike Doanh Tran wrote at 2003-12-11 10:16 -0700:
... File /var/zope/lib/python/ZLogger/stupidFileLogger.py, line 27, in __call__ File /var/zope/lib/python/ZLogger/stupidFileLogger.py, line 79, in stupid_log_write IOError: [Errno 5] Input/output error
This looks like you started Zope in a terminal session and then terminated the session. This closes the "stderr" file descriptor. Later, when Zope wants to log something, you get the exception above. Advice: turn on Zope logging (--> "doc/LOGGING.txt") and give it a standard file to log to. If you are not interested in logging (not recommeded!), then use "/dev/null" as log file. -- Dieter
participants (3)
-
Dieter Maurer -
Mike Doanh Tran -
Paul Winkler