Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Automate your PerlMonks activities

by Chief of Chaos (Friar)
on Nov 27, 2002 at 09:47 UTC ( [id://216034]=note: print w/replies, xml ) Need Help??


in reply to Automate your PerlMonks activities

Hi,
How can I configure it to use a proxy:port for connection ?

Replies are listed 'Best First'.
Re: Re: Automate your PerlMonks activities
by grantm (Parson) on Nov 27, 2002 at 11:42 UTC
    Did you try setting your 'http_proxy' environment variable to 'http://proxy:port'? That's the standard way for LWP scripts.
      True, but the script needs to be told to use the proxy. For pm_login, add this line between lines 18 and 24:
      $ua->proxy( 'http', $ENV{ HTTP_PROXY } ) if $ENV{ HTTP_PROXY };
      I'm sure similar additions can be made to each script that needs it to add proxy functionality.
      --
      Love justice; desire mercy.
        You shouldn't need to do this. The module automatically calls $ua->env_proxy;
        You should need merely to   export http_proxy=http://host:port or   setenv http_proxy http://host:port You might want to retrieve the latest version, too. It has some nice new features.

        jdporter
        ...porque es dificil estar guapo y blanco.

        You're right of course, you do need to tell the UserAgent to use the proxy, but if you use the standard variable names (all lower case) then you simply say:

        $ua->env_proxy;

Log In?
Username:
Password:

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

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

    No recent polls found