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
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.
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
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.