problem with Apache::SSIChain

2001-10-25 Thread LPorcano
I am trying to set up a Apache::SSIChain to process the output from a cgi running under Apache::Registry I am using the following line in the conf file: PerlHandler Apache::OutputChain Apache::SSI Apache::Registry The problem is that all of the includes are being inserted at the top of

Re: problem with Apache::SSIChain

2001-10-25 Thread LPorcano
Yeah, sorry that was a typo in the email. It is actually Apache::SSIChain in the conf file. Len - Original Message - From: Perrin Harkins [EMAIL PROTECTED] To: LPorcano [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, October 25, 2001 9:52 AM Subject: Re: problem with Apache

Re: Apache::Registry() and strict

2000-11-07 Thread lporcano
It looks like you are trying to determine if an array is empty, in that case replace if (!defined(@fields)) with if (!scalar(@fields)). - Original Message - From: Ron Rademaker [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, November 07, 2000 5:26 AM Subject:

Re: Apache::Registry() and strict

2000-11-07 Thread lporcano
I'm not quite looking for a workaround, I already got one, I'd like to know why it's going wrong. From the perlfunc page: defined - Returns a Boolean value telling whether EXPR has a value other than the undefined value undef. [...] On the other hand, use of defined() upon aggregates