I moved a Data.fs file from one machine to another. On the second machine, when I click on the Index tab of a catalog object, I receive the following traceback below. I am using Zope 2.6.1 source distribution and Python 2.13. I am also using TextIndexNG2, if that matters. Any ideas? Exception Type Attribute Error Exception Value set Traceback (innermost last): * Module ZPublisher.Publish, line 98, in publish * Module ZPublisher.mapply, line 88, in mapply * Module ZPublisher.Publish, line 39, in call_object * Module Shared.DC.Scripts.Bindings, line 252, in __call__ * Module Shared.DC.Scripts.Bindings, line 283, in _bindAndExec * Module App.special_dtml, line 174, in _exec * Module DocumentTemplate.DT_With, line 76, in render * Module DocumentTemplate.DT_In, line 705, in renderwob * Module DocumentTemplate.DT_With, line 76, in render * Module DocumentTemplate.DT_Util, line 201, in eval __traceback_info__: REQUEST * Module <string>, line 0, in ? AttributeError: set
Kevin Carlson wrote at 2004-5-19 15:08 -0400:
I moved a Data.fs file from one machine to another. On the second machine, when I click on the Index tab of a catalog object, I receive the following traceback below. I am using Zope 2.6.1 source distribution and Python 2.13. I am also using TextIndexNG2, if that matters. Any ideas? ... * Module DocumentTemplate.DT_Util, line 201, in eval __traceback_info__: REQUEST * Module <string>, line 0, in ?
AttributeError: set
Looks as if "REQUEST" were not a request object. There have been several problem reports along this line in "zope-dev". I do not know how/whether the problem was resolved. Maybe, you check for yourself(--> archive). -- Dieter
This usually happens when the object being accessed is not properly aquisition-wrapped. The symptom is that the REQUEST object shows up as the string "<Special Object Used to Force Acqusition>". The solution varies by cause. On Thu, 2004-05-20 at 15:15, Dieter Maurer wrote:
Kevin Carlson wrote at 2004-5-19 15:08 -0400:
I moved a Data.fs file from one machine to another. On the second machine, when I click on the Index tab of a catalog object, I receive the following traceback below. I am using Zope 2.6.1 source distribution and Python 2.13. I am also using TextIndexNG2, if that matters. Any ideas? ... * Module DocumentTemplate.DT_Util, line 201, in eval __traceback_info__: REQUEST * Module <string>, line 0, in ?
AttributeError: set
Looks as if "REQUEST" were not a request object.
There have been several problem reports along this line in "zope-dev". I do not know how/whether the problem was resolved. Maybe, you check for yourself(--> archive).
Kevin Carlson wrote:
I moved a Data.fs file from one machine to another. On the second machine, when I click on the Index tab of a catalog object, I receive the following traceback below. I am using Zope 2.6.1 source distribution and Python 2.13. I am also using TextIndexNG2, if that matters. Any ideas?
I reran the setup.py script that came with TextIndexNG2 and that fixed the problem.
participants (3)
-
Chris McDonough -
Dieter Maurer -
Kevin Carlson