1 Aug
1999
1 Aug
'99
11:09 p.m.
On Sun, 1 Aug 1999, Rob Page wrote:
I assume there is no earthly way to get zope to run external cgi-scripts or executables (with Zserver that is; for the moment I am using zserver) unless the script is in python.
import os os.system("some_script.pl")
Or, under Windows, os.spawnve is a good way to do this as you can automagically set the environment from within python. Remember to add a 'dummy' first arg to the arg list to keep Billy happy. Cheers, Anthony Pfrunder