[Zope] CLIENT_HOME
Dieter Maurer
dieter@handshake.de
Wed, 31 Jul 2002 22:43:46 +0200
Stephan =?ISO-8859-1?Q?G=F6ldi?= writes:
> All of a sudden at starting a Zope instance, I get this error message on
> the console:
>
> File "/usr/local/zope/z2.py", line 476, in ?
> zdaemon.run(sys.argv, os.path.join(CLIENT_HOME, Zpid))
> NameError: name 'CLIENT_HOME' is not defined
"CLIENT_HOME" (and the other homes) are usually inserted into
"__builtins__" by "App/find_homes".
You might want to debug the code (either with a debugger (e.g. "pdb")
or with print statements) to understand why it no longer works.
Dieter