-----Original Message----- From: Ryan Daum [mailto:rdaum@techweavers.net] Sent: Thursday, May 13, 1999 3:12 PM To: zope@zope.org Subject: [Zope] ZServer Problems
Using Zope 1.11.0pr1 on FreeBSD 2.2.8 with Python 1.5.2, ZServer starts correctly, fields HTTP, FTP, and PCGI requests, but both HTTP and PCGI don't seem to be publishing modules correctly. They both return this:
<module 'Main' from '/usr/local/apache/zope/lib/python/Main.pyc'>
.. when accessing the root document .. all other documents (i.e. /manage) return an error (does not exist)
Anybody know what's going on?
There is probably something wrong happening before the publisher can start the Zope process. We are working on the details for a publisher error protocol so that publishers can participate in presenting useable errors to the user. Till then, cd to the lib/python directory in Zope, run python, and
import Main
If that works, try:
import ZPublisher ZPublsher.Main('')
This asks for the index page of your site. You shouldn't get to this point (otherwise it would work for you in the first place) you'll get a traceback at some point, if the error is not obvious, post the traceback. -Michel
_______________________________________________ Zope maillist - Zope@zope.org http://www.zope.org/mailman/listinfo/zope
(For developer-specific issues, use the companion list, zope-dev@zope.org - http://www.zope.org/mailman/listinfo/zope-dev )