I have been in contact with Python help mailing list, they asked me to check a few things with the Zope installation. This is a reply from Python mailing list: "> It is an installation in my Home directory as i do not have root > access, the root installation is ver 2.1 I'm using the local 2.1.2 > python as Zope will only compile with this version. I'd also double- and triple-check that when Python runs Zope that it's using hte modules that are in your home directory rather than the ones that are installed for system-wide use and that Zope is binding to a socket that you have permission to bind to. But alas I'm not much of a Zope guy and so can't tell you exactly how to check those things." Does anyone know how to check the above? Thanks Julian Dieter Maurer wrote:
Julian Baker writes:
Finally it has compiled Digital Unix needs GNU tar aswell as the others mentioned.
However after starting the server and logging in, i get the frameset displayed in the browser but each window with a comment (111) connection refused. On the server an error displayed
Stack overflow: pid 9541, proc python, addr 0x141033e88, pc 0x120062bb4
Is this down to permissions? Its probably a C stack overflow.
In single threaded programs, Unix automatically enlarges the C stack, when necessary. For multi-threades programs, the stack is allocated in advance and may overflow.
If I am right with my assumption, then you would need to change the Python source code and give new threads a larger C stack.
Can't help you with this, as I do not have Digital Unix.
Dieter