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"; }

In reply to Re^2: Mod_perl errors filling up apache logs by ubertricep
in thread Mod_perl errors filling up apache logs by ubertricep

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.