On 5/14/06, Chad Perrin <[EMAIL PROTECTED]> wrote:
<!--#exec cgi="/cgi-bin/bar.pl" -->
If, however, I have the markup with which I want to wrap my Perl output
defined in foo.shtml, and bar.pl only outputs the stuff that needs to be
dynamically generated by the Perl script, I get this output in my
browser:
[an error occurred while processing this directive]
First, some tips for looking into further such problems:
* Check the error log-- the messages are usually pretty descriptive.
* Apache (which I'm assuming that you're using) has great
documentation (http://httpd.apache.org/docs/2.0/howto/ssi.html , for
example).
For your specific problem, try using <!--#include virtual="/cgi-bin/bar.pl" -->
(For exec, it's exec cmd, not exec cgi).
Hope this helps,
Ricky