Is there a way to get a standard SSI (Server Side Include) to work inside a dolphin block. For example, is it possible to execute a perl script that would normally run as <!--#exec cmd="/path/cgi-bin/hello_world.cgi"-->
.
Thank you
.
Arthur
Is there a way to get a standard SSI (Server Side Include) to work inside a dolphin block. For example, is it possible to execute a perl script that would normally run as <!--#exec cmd="/path/cgi-bin/hello_world.cgi"--> . Thank you . Arthur |
The answer to my question is to use passthrough() as code in the Content field of the php block. Here is the code for my example. . passthru("perl /path/cgi-bin/hello_world.cgi"); . Arthur |