There are a number of things wrong with this.
(1) Add a space before the close of the comment, that is
s/scm"-->/scm" -->/
(2) include virtual takes a path relative to the "DocumentRoot"
if it begins with a "/". So the path "/home/me/scheme/test.scm"
would have to be a reasonable path passed to the webserver. You
may
wish to use "include file" instead. (reread the mod_include
docs)
(3) The include is just a straight content inclusion. It runs
nothing
(I'm not entirely certain that it has to be that way, I'm not
sure
what handlers would get called for an include virtual, but it
would
take configuration).
So look at exec instead of include.
===
I fixed all the problems you mentioned. I added the space, and even
tried to use:
AddHandler scm
(there were only handlers for cgi and pl) to see if that would maybe
work, but it didn't. I tried the directive #exec
cgi="absolute-path-to-script" instead of #include but it didn't do it
either. Doing #exec cmd="ls -a" or something simple like that didn't
work either which tells me Apache isn't running/configured right but I
have no idea what to look for--what could be causing this?
Thanks,
-- John