hi was at #zope, and hazmat recommended that i shoot the question here. i have a setup zope-2.6.1-src and zeo2.0.2, running on linuxx and python2.1.3 i'm using instance home, and currently there are errors in ZEO_SERVER.log[1] i'm not sure what else to do. i've run fsrecover.py from 2.5.1, and nothing seems wrong with Data.fs running fsrecover.py from 2.6.1 results in nothing ive included export PYTHONPATH=$PYTHONPATH:/usr/local/Zope-2.6.1-src/lib/python: in start_zeo, and still the same tia -- [1] ERROR(200) Conflict Resolution Unexpected error Traceback (innermost last): File /usr/local/Zope-2.6.1-src/lib/python/ZODB/ConflictResolution.py, line 96, in tryToResolveConflict (Object: /usr/local/ZopeHome/var/Data.fs) SystemError: Failed to import class ClassicHTMLFile from module App.special_dtml
Just a wild guess:
ERROR(200) Conflict Resolution Unexpected error Traceback (innermost last): File /usr/local/Zope-2.6.1-src/lib/python/ZODB/ConflictResolution.py, line 96, in tryToResolveConflict (Object: /usr/local/ZopeHome/var/Data.fs) SystemError: Failed to import class ClassicHTMLFile from module App.special_dtml
This is logged by some bare except in the ZODB module, but it seems it has nothing to do with Your Data.fs. It seems the ZODB cannot import a class which should be there, however. Could You try to get a python shell for Your Zope installation and try the following commands (after fixing typos ;-): import Zope Zope.startup() from App.special_dtml import ClassicHTMLFile The last import normally should succeed, (it is in lib/python/App/special_dtml.py) but it seems in your case it failes for some reason. Cheers, Clemens
participants (2)
-
Bakhtiar A Hamid -
Clemens Robbenhaar