On Wed, 18 Jul 2001, Arthur M. Kang wrote:

> Is there a reverse to the    ($res,$password)=$r->get_basic_auth_pw
> function?  Is there anyone to globally set or reset the values that come
> out of $r->get_basic_auth_pw?  Can I set a new password to come
> out?  You can do it with the user ($c->user)...    > 

$r->header_in(Authorization => 'Basic ' . 
              MIME::Base64::encode(join ':', $username, $password));


Reply via email to