[Zope] error on attempt to start zope 2.5.1 on freebsd 4.6 release

Dieter Maurer dieter@handshake.de
Thu, 25 Jul 2002 20:42:08 +0200


Dennis B. writes:
 > Wondering if the following looks simple enough for anyone to help
 > resolve:
 > 
 > 
 > localhost# /usr/local/www/Zope/start
 > ------
 > 2002-07-23T23:46:56 PROBLEM(100) Init Ambiguous name for method of
 > Products.ZNavigator.ZNavigator.ZNavigator: "manage" != "manage_main"
These are harmless, you can ignore them.
> ...
 > 2002-07-23T23:46:58 PANIC(300) z2 Startup exception
This is fatal.

 > Traceback (innermost last):
 >   File /usr/local/www/Zope/lib/python/OFS/Application.py, line 721, in
 > install_standards
 >     (Object: Zope)
 > IOError: [Errno 2] No such file or directory:
 > '/usr/local/www/Zope/lib/python/OFS/standard/standard_template.pt.zpt'
It cannot find a file with the given name.

   Indeed, the name is strange. Almost surely, it should not look for
   "*.pt.zpt". Check the folder. I expect, you will find
   a "standard_template.zpt".

   If this is correct, line 721 of "OFS/Application.py" is wrong.
   Remove the ".pt" suffix.

An alternative might be to give Zope an initial "Data.fs".
Usually, it comes as "Data.fs.in" and is copied to "Data.fs"
during installation. Do not know why this was not the case
for your setup.


Dieter