RE: [Zope] problem on newly installed Zope2.2.0: I have lost a folder

2000-08-31 Thread Brian Lloyd

 does this error means something for you:
 
 2000-08-31T14:06:05 ERROR(200) ZODB Couldn't load state for
 '\000\000\000\000\000\000\014\021'
 Traceback (innermost last):
   File /home/sms/Zope_220/lib/python/ZODB/Connection.py, line 447, in
 setstate
 SystemError: Failed to import class MEM from module __main__
 

It means that the object can't be unpickled because the 
module that the objects class is defined in cannot be 
imported. Whatever product / python code defines the MEM 
class is probably installed in your old instance but not 
in your new instance...

Hope this helps!


Brian Lloyd[EMAIL PROTECTED]
Software Engineer  540.371.6909  
Digital Creations  http://www.digicool.com 



___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] problem on newly installed Zope2.2.0: I have lost a folder

2000-08-31 Thread Dieter Maurer

Gilles Lavaux writes:
  2000-08-31T14:06:05 ERROR(200) ZODB Couldn't load state for
  '\000\000\000\000\000\000\014\021'
  Traceback (innermost last):
File /home/sms/Zope_220/lib/python/ZODB/Connection.py, line 447, in
  setstate
  SystemError: Failed to import class MEM from module __main__
It seems that something in your folder need a class with name
"MEM" that was defined inside an extension (a file used
for an external method or a custom class for SQL methods).
Such classes cannot be loaded, because the unpickler does not
find the source file (it thinks, the class comes from
module "__main__", which is not true).


Dieter

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )