WebDAV BUGS and access to /tmp directory
Hi, I am back trying to figure out why my zope crashes on open('/tmp/tmp4fd4foo') kind of opens, which seem to originated from webdav code. Question to someone who is expert in webdav/*.py code... I just would like to know so I can further my investigation into the bug/malfuction of zope on OS X. regards, Pavel
Pavel Zaitsev wrote:
I am back trying to figure out why my zope crashes on open('/tmp/tmp4fd4foo') kind of opens, which seem to originated from webdav code.
I doubt it's anything specific to the webdav code that's causing a problem. Maybe a large file upload, try doing the same by addign a file object using the ZMI.
Question to someone who is expert in webdav/*.py code... I just would like to know so I can further my investigation into the bug/malfuction of zope on OS X.
I'd suggest checking that the user running Zope has permission to write the the /tmp/ folder. cheers, Chris -- Simplistix - Content Management, Zope & Python Consulting - http://www.simplistix.co.uk
Pavel Zaitsev <pavel@md5.ca> wrote:
I am back trying to figure out why my zope crashes on
Please define "crashes". Florent
open('/tmp/tmp4fd4foo') kind of opens, which seem to originated from webdav code. Question to someone who is expert in webdav/*.py code... I just would like to know so I can further my investigation into the bug/malfuction of zope on OS X.
-- Florent Guillaume, Nuxeo (Paris, France) CTO, Director of R&D +33 1 40 33 71 59 http://nuxeo.com fg@nuxeo.com
Florent Guillaume wrote:
Pavel Zaitsev <pavel@md5.ca> wrote:
I am back trying to figure out why my zope crashes on
Please define "crashes".
Well zope is trying to create file in /tmp , process gets 'state' -> 'U' which is not defined in the manual, maybe Unresponsive, like 'D' sign? then after while whole system locks up, it gets killed by overlooking parent, after which things sort of go back to normal.(pid of process gotten by 'ps aux|grep zope' changes.) gdb does not seem to be able to dump a backtrace of the process either, it says that process has quit while evaluating injected statement.... i have no idea what is going on. pavel.
Pavel Zaitsev wrote at 2005-3-31 00:33 -0500:
I am back trying to figure out why my zope crashes on open('/tmp/tmp4fd4foo') kind of opens, which seem to originated from webdav code.
You problem seems to be much deeper: It is completely justified to open a temporary file -- whether for WebDAV or any other purpose. You should set up your system in a way that temporary files *can* be created and used... -- Dieter
participants (4)
-
Chris Withers -
Dieter Maurer -
Florent Guillaume -
Pavel Zaitsev