LocalFS problem in zope 2.4.3
Hi! I tried to install LocalFS in my zope on MacOSX 10.1:
(Zope 2.4.3 (source release, python 2.1, linux2), python 2.1.1, darwin1)
and got this in import:
Import Traceback
Traceback (most recent call last): File "/Applications/Zope/lib/python/OFS/Application.py", line 563, in import_product product=__import__(pname, global_dict, global_dict, silly) File "/Applications/Zope/Products/LocalFS/__init__.py", line 65, in ? traceback.print_exc() File "/Applications/Zope/lib/python2.1/traceback.py", line 210, in print_exc print_exception(etype, value, tb, limit, file) File "/Applications/Zope/lib/python2.1/traceback.py", line 122, in print_exception _print(file, 'Traceback (most recent call last):') File "/Applications/Zope/lib/python2.1/traceback.py", line 13, in _print file.write(str+terminator) IOError: [Errno 5] Input/output error
Do you have any idea, is there something I can do? cheers, Kari-Hans Kommonen -- ---------------------------------------------- Kari-Hans Kommonen, ARKI research group Media Lab, University of Art and Design Helsinki UIAH Hämeentie 135 C, 00560 HELSINKI, Finland email: khk@uiah.fi web: http://arki.uiah.fi tel: +358 9 7563 0563 fax: +358 9 7563 0555
LocalFS is trying to write something to the terminal. run your zope instance with nohup, like [machine:~] user% nohup ./start & this will send anything that would be written to the terminal to a text file named "nohup.out" in that same location and you can safely close the terminal window. of course it makes sense to check that file once in a while. in this case the product wants to write a traceback. jens On Tuesday, January 15, 2002, at 07:55 , Kari-Hans Kommonen wrote:
Hi!
I tried to install LocalFS in my zope on MacOSX 10.1:
(Zope 2.4.3 (source release, python 2.1, linux2), python 2.1.1, darwin1)
and got this in import:
Import Traceback
Traceback (most recent call last): File "/Applications/Zope/lib/python/OFS/Application.py", line 563, in import_product product=__import__(pname, global_dict, global_dict, silly) File "/Applications/Zope/Products/LocalFS/__init__.py", line 65, in ? traceback.print_exc() File "/Applications/Zope/lib/python2.1/traceback.py", line 210, in print_exc print_exception(etype, value, tb, limit, file) File "/Applications/Zope/lib/python2.1/traceback.py", line 122, in print_exception _print(file, 'Traceback (most recent call last):') File "/Applications/Zope/lib/python2.1/traceback.py", line 13, in _print file.write(str+terminator) IOError: [Errno 5] Input/output error
Do you have any idea, is there something I can do?
cheers, Kari-Hans Kommonen --
participants (2)
-
Jens Vagelpohl -
Kari-Hans Kommonen