[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] Server Side Includes and my being a total spaz



on 12/1/99 9:25 AM, Gerard Onorato at gonorato@xxxxxxxxxxxxxxx wrote:

> The page is delivered with the <!--#include virtual="file.shtml" --> comment
> still in place.. so basically it remains unparsed.

I think that your server isn't actually parsing that HTML file.

You've restarted apache after making the changes, correct?

Try using exec instead of virtual.

<!--#exec cgi="file.cgi"-->

And put like

#!/usr/bin/perl
print "Test";

in the file.cgi and chmod it to 755

-k