http://qs321.pair.com?node_id=1083942


in reply to Re^2: LWP and HTTPS
in thread LWP and HTTPS

If you want to set up the environment, either do so outside your script, or at least, before the SSL modules are loaded:

BEGIN { $ENV{ HTTPS_VERSION }= 3; }; use WWW::Mechanize;

Replies are listed 'Best First'.
Re^4: LWP and HTTPS
by Gangabass (Vicar) on Apr 27, 2014 at 01:14 UTC
    This will not work because $ENV{ HTTPS_VERSION }= 3; is the default value :-(