[plt-scheme] web-server servlet components not reloading
Daniel Silva wrote:
> I would rather run scheme CGI through my host's apache instead of
> loading the plt web-server on some weird port, but the server refuses to
> execute mzscheme, so I am stuck with servlets.
Why not just write a Scheme CGI script for Apache?
Preface your code with
#! /bin/sh
string=? ; exec /usr/local/plt/bin/mzscheme -r $0
[Scheme code here]
Of course, you won't be able to use send/suspend, or
other procedures associated with the PLT server.
If Apache won't start MzScheme, there's probably a
permissions problem or Apache configuration issue.
-- Paul