Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^2: Mod_perl errors filling up apache logs

by ubertricep (Initiate)
on Nov 30, 2012 at 13:00 UTC ( [id://1006470]=note: print w/replies, xml ) Need Help??


in reply to Re: Mod_perl errors filling up apache logs
in thread Mod_perl errors filling up apache logs

Well I have pinpointed the problem. It's a problem with LWP::UserAgent and LWP::Simple.

Here is a some sample code. It acts as a post proxy. Every time this is ran I get 50 or so error messages as above.

use LWP::UserAgent; my $ua = LWP::UserAgent->new; $ua->agent("send"); # Create a request my $req = HTTP::Request->new(POST => 'http://signup.website.com/in +dex.pl?action=signup'); $req->content_type('application/x-www-form-urlencoded'); use URI::Escape; my $username = uri_escape($CGI->param('username')); my $email = uri_escape($CGI->param('email')); my $password = uri_escape($CGI->param('password')); my $name = uri_escape($CGI->param('name')); my $recaptcha_response_field = uri_escape($CGI->param('recaptcha_r +esponse_field')); my $recaptcha_challenge_field = uri_escape($CGI->param('recaptcha_ +challenge_field')); my $affiliate_key = uri_escape($CGI->param('affiliate_key')); $req->content("username=$username&email=$email&password=$passwor +d&name=$name&recaptcha_response_field=$recaptcha_response_field&recap +tcha_challenge_field=$recaptcha_challenge_field&affiliate_key=$affili +ate_key&sitetype=clan"); # Pass request to the user agent and get a response back my $res = $ua->request($req); # Check the outcome of the response print $CGI->header(-type => "text/html"); if ($res->is_success) { print $res->content; }else { print $res->status_line, "\n"; }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1006470]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (3)
As of 2024-04-19 15:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found