in reply to Re: using proxy servers with lwp::simple or useragent
in thread using proxy servers with lwp::simple or useragent

that's exactly what i was looking for!!! thanks man
  • Comment on Re^2: using proxy servers with lwp::simple or useragent

Replies are listed 'Best First'.
Re^3: using proxy servers with lwp::simple or useragent
by Anonymous Monk on Mar 22, 2006 at 05:05 UTC
    Actually with more testing it didn't work. Maybe it's working but I don't understand? Should this be hitting my web site under a new IP address every time?
    use strict; use warnings; use LWP::Simple; my @list = qw(211.202.1.52:80 61.139.87.132:80 72.13.246.65:3128 203.1 +15.10.11:80 203.115.10.38:80); foreach my $prox (@list) { $ENV{HTTP_proxy}= $prox; my $url = "www.sensationalscentsonline.com"; print "$prox attempted..\n"; }