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