in reply to Re^2: Best practice for letting my CGI scripts access another password protected CGI script?
in thread Best practice for letting my CGI scripts access another password protected CGI script?

Well the logs are telling me that the request has no credentials associated with it, so time to look into that.

Looks that way :)

use LWP; my $headers = HTTP::Headers->new(); $headers->authorization_basic('user', 'pass'); my $request = new HTTP::Request(GET => $url, $headers); $request->dump; __END__ GET - Authorization: Basic dXNlcjpwYXNz (no content)
  • Comment on Re^3: Best practice for letting my CGI scripts access another password protected CGI script?
  • Download Code