Re: I am having trouble using SSI(Server side includes) from cgi using perl

2003-06-06 Thread drieux
On Thursday, Jun 5, 2003, at 14:44 US/Pacific, Hanson, Rob wrote: [..] Right, Apache 2.0 supports this with filters. Rob can you point us at some documentation about this? I'm half and half, with half of the webservers being 2.0 and the rest more 'mature' releases 8-) has anyone done somethin

RE: I am having trouble using SSI(Server side includes) from cgi using perl

2003-06-06 Thread Hanson, Rob
Right, Apache 2.0 supports this with filters. Rob -Original Message- From: Octavian Rasnita [mailto:[EMAIL PROTECTED] Sent: Thursday, June 05, 2003 5:32 PM To: Edson Manners; [EMAIL PROTECTED] Subject: Re: I am having trouble using SSI(Server side includes) from cgi using perl CGI is

Re: I am having trouble using SSI(Server side includes) from cgi using perl

2003-06-06 Thread Octavian Rasnita
CGI is handled by another web server module than Server Side Includes, so they can't work together. I heard that in the latest version of Apache (or only a future one, I don't know), they will make possible to feed the results of a CGI program to the server side includes parser. Teddy, Teddy's Cen

Re: I am having trouble using SSI(Server side includes) from cgi using perl

2003-06-06 Thread drieux
On Thursday, Jun 5, 2003, at 11:25 US/Pacific, Edson Manners wrote: [..] Is there anyway I can send the cgi output to a .shtml file before handing it to the browser, or handing this output to the webserver so that it can parse the SSI before giving it to the client browser? [..] I think that is th

Re: I am having trouble using SSI(Server side includes) from cgi using perl

2003-06-06 Thread Edson Manners
I am adding a simple include statement: print "\n"; Is there anyway I can send the cgi output to a .shtml file before handing it to the browser, or handing this output to the webserver so that it can parse the SSI before giving it to the client browser? Thanks On Thu, 2003-06-05 at 14:15, drieu

Re: I am having trouble using SSI(Server side includes) from cgi using perl

2003-06-06 Thread drieux
On Thursday, Jun 5, 2003, at 10:41 US/Pacific, Edson Manners wrote: I am making a cgi script that prints a web page with SSIs in it. When I put SSI code in my cgi which is output to STDOUT the webserver gets no chance to parse the SSI and put the HTML code in in place of the SSI statements. Does a