On 2/15/02 12:00 PM, Stephen Warburton <[EMAIL PROTECTED]> wrote: > Hi,
Hey Stephen, > I am stuck trying to get a simple C++ CGI working. I am using the installed > configuration file which allows Apache to succesfully serve up a web page > under document root: > DocumentRoot "C:/Apache/Apache Group/Apache/real_docs/deepconnection" I don't mean to sound mean, but does this look like a C++ or Apache list? :) > I have this line in the web page > <!-- #exec cgi="/http://www.deepconnection.com/cgi-bin/hello.exe" --> I haven't really looked the thing over, but I believe you need to use absolute or relative path in SSI directives... no full addresses. I.e., something along the lines of: <!--#exec cgi="/cgi-bin/hello.exe"--> You might also try <!--#include virtual="/cgi-bin/hello.exe"--> I'm also pretty sure that the SSI won't work if you have a space between the <!-- and #. Capitalization and whitespace matter with almost everything. I think that'll help, but I very well might be completely wrong, and may have just humiliated myself. Oh well. Try asking on a more appropriate list :) -- Michael -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
