All These Modules...
Hi; I just installed a bunch of products and have run into several problems with ImportErrors. The tracebacks all end the same: No module named whatever. Here's the list of missing modules: ldap html_quote get_request MySQL expr_globals CMFCore.PortalContent Do these modules belong in python or zope? Where do I get them? TIA, BenO
At 04:09 PM 1/1/02 -0700, you wrote:
A lot of the products fail like that because of missing dependencies(like the MySQL) or because the product was written for a previous version of zope. I spent a chunk of time going through one that I use frequently ( bookmark) and it turned out that the parts that imported html_quote were doing it from an outdated source. Take a look at the December archives for those specifics,
What's that?
but overall you have to go through on a product-by-product basis and figure out what's wrong with each.
Ugh!
HTH
The truth hurts :/ BenO
Ben Ocean schrieb:
Hi; I just installed a bunch of products and have run into several problems with ImportErrors.
Tell the products wich have a traceback for clearance
The tracebacks all end the same: No module named whatever. Here's the list of missing modules: ldap
ldap is a python module for doing ldap via python
html_quote
should be in Zope core
get_request
you need GlobalRequestPatch from zope.org for get_request
MySQL
are you working with MySQL db ?
expr_globals
should be in Zope core
CMFCore.PortalContent
have you CMF installed ?
Do these modules belong in python or zope? Where do I get them? TIA, BenO
_______________________________________________ Zope maillist - Zope@zope.org 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 )
Thanks!! BenO At 07:12 AM 1/2/02 +0100, you wrote:
Ben Ocean schrieb:
Hi; I just installed a bunch of products and have run into several problems with ImportErrors.
Tell the products wich have a traceback for clearance
The tracebacks all end the same: No module named whatever. Here's the list of missing modules: ldap
ldap is a python module for doing ldap via python
html_quote
should be in Zope core
get_request
you need GlobalRequestPatch from zope.org for get_request
MySQL
are you working with MySQL db ?
expr_globals
should be in Zope core
CMFCore.PortalContent
have you CMF installed ?
Do these modules belong in python or zope? Where do I get them? TIA, BenO
_______________________________________________ Zope maillist - Zope@zope.org 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 )
participants (3)
-
Ben Ocean -
Ben Ocean -
Dirk Datzert