in reply to [Mason] Sending right header to force http basic authentication
Perhaps semething like this:
<%perl> $m->autoflush(0); $m->clear_buffer(); $r->header_out->add("WWW-Authenticate" => 'Basic realm="RealmChain"'); $r->send_http_header(); $m->abort("401 Unauthorized"); </%perl>
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: [Mason] Sending right header to force http basic authentication
by johnnywang (Priest) on Nov 26, 2005 at 20:47 UTC | |
by Anonymous Monk on Nov 27, 2005 at 02:28 UTC | |
by jeteve (Pilgrim) on Nov 28, 2005 at 09:38 UTC |