Re: Custom Form using PerlHandler with redirection

2005-02-11 Thread [EMAIL PROTECTED]
On Thu, Feb 10, 2005 at 07:38:44AM -0500, Geoffrey Young wrote: > Pratik wrote: > >>tried on success authentication .. > >>$r->header_out('redirect.html'); > >>return REDIRECT; > > Shouldn't you be doing : > > > > use Apache::Constants qw(REDIRECT OK); > > [] > > [] > > $r-

Re: Custom Form using PerlHandler with redirection

2005-02-10 Thread Geoffrey Young
Pratik wrote: >>tried on success authentication .. >>$r->header_out('redirect.html'); >>return REDIRECT; > > > Shouldn't you be doing : > > use Apache::Constants qw(REDIRECT OK); > [] > [] > $r->header_out(Location => 'redirect.html'); that would help :) in cases like

Re: Custom Form using PerlHandler with redirection

2005-02-10 Thread Pratik
> tried on success authentication .. > $r->header_out('redirect.html'); > return REDIRECT; Shouldn't you be doing : use Apache::Constants qw(REDIRECT OK); [] [] $r->header_out(Location => 'redirect.html'); $r->status(REDIRECT); $r->send_http_header; return OK; Thanks, Pra

Custom Form using PerlHandler with redirection

2005-02-10 Thread [EMAIL PROTECTED]
Hello, I am not sure how to workaround this issue. Was hoping someone could hit me with any suggestion:) I am using a custom form instead of the usual Basic or Digest popup. Authentication works fine however redirection is not working. tried on a successful authentication.. redirection a old f