I've read the thread:
http://groups.google.com/group/webpy/browse_thread/thread/5374f00a45b1ab40
It doesn't address the issue I've run headlong into:
web.config.db_parameters = dict(dbn='sqlite', db='testdb')
web.config.db_printing = True
web.load()
#x = web.select("todo")
Notice that the web.select() is commented out. That is to verify that
the problem does indeed occur in web.load() which it does.
Unfortunately the traceback I'm getting isn't clarifying the issue for
me.
Further details. This app is being run from a fastcgi process called
from a GWT app residing in a virtual host. EVERYTHING else works ( so
far / knock on wood ). But as soon as I try to web.load() I get this
error:
/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-
packages/web.py-0.22-py2.5.egg/web/utils.py in
__getattr__(self=<Storage {'status': '200 OK', 'headers': [('Content-
Type', 'text/html')]}>, key='path')
52 return self[key]
53 except KeyError, k:
54 raise AttributeError, k
55
56 def __setattr__(self, key, value):
builtin AttributeError = <type 'exceptions.AttributeError'>, k =
KeyError('path',)
<type 'exceptions.AttributeError'>: 'path'
As you can see I'm running on OS X, and Python 2.5, and web 0.22. If
anybody has run into this before and has a clear handle on the
solution, or where to start looking for it I would be most
appreciative for the guidance.
Thanks,
Ray
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"web.py" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/webpy?hl=en
-~----------~----~----~----~------~----~------~--~---