Re: Making warnings trigger errors.

2007-01-23 Thread Phil Whelan
Or to do it lexically: use warnings FATAL => 'all'; I used this before to find out where a warning was coming from that I just could track down. Easy to find if it dies.

Re: Apache2::RequestUtil error

2007-01-16 Thread Phil Whelan
On 17/01/07, Randy Kobes <[EMAIL PROTECTED]> wrote: On Tue, 16 Jan 2007, [EMAIL PROTECTED] wrote: > Hi folks, > > Not sure whether this issue has been resolved earlier, but did my bit > searching on the list and googled - couldn't find any standard solutions > working for me. And apologies for t

Re: PerlFilterInputHandler being called for output????

2007-01-11 Thread Phil Whelan
Hi Marc, Do you have a example of the configuration and code you are using? Cheers, Phil On 11/01/07, Marc Boorshtein <[EMAIL PROTECTED]> wrote: Hello, I've biult a perl connection filter that I've configured with PerlFilterInputHandler, but for some reason it keeps getting called for output.

Re: Lost ENV variable value .........

2007-01-11 Thread Phil Whelan
Hi Tracy12, $r->content_type('text/html'); $r->header_out->set(Location => $urlNew); return Apache2::Const::REDIRECT; When you do the above, you're actually returning context to the client, giving them the decision to follow the redirect information or not. They most probably will (especially