in reply to RE: Getting username and password from the URL.
in thread Getting username and password from the URL.
The server is running mod_perl (I can see "mod_perl" on the "server" part of the http responses), I tryed this:
And I get an "Internal Server Error". Do I have to use some library or something on the script?#!/usr/bin/perl print "Content type: text/html\n\n"; $username = $r->connection->user; my($ret, $password) = $r->get_basic_auth_pw; print $password;
Thanks!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: RE: RE: Getting username and password from the URL.
by btrott (Parson) on Jun 12, 2000 at 06:37 UTC | |
|
RE: RE: RE: Getting username and password from the URL.
by jjhorner (Hermit) on Jun 12, 2000 at 06:50 UTC |