in reply to Re^4: LWP::Simple on HTTPS sites
in thread LWP::Simple on HTTPS sites

5.016003 6.04 libwww-perl/6.04 501 Can't load 'C:/xampp/perl/vendor/lib/auto/Net/SSLeay/SSLeay.dll' for module Net::SSLeay: load_file:The specified module could not be found (LWP::Protocol::https not installed)

Replies are listed 'Best First'.
Re^6: LWP::Simple on HTTPS sites
by marto (Cardinal) on Feb 13, 2017 at 12:16 UTC

    "LWP::Protocol::https not installed)"

    From the documentation:

    "The libwww-perl core no longer bundles protocol plugins for SSL. You will need to install LWP::Protocol::https separately to enable support for processing https-URLs."

    cpanm LWP::Protocol::https
Re^6: LWP::Simple on HTTPS sites
by poj (Abbot) on Feb 13, 2017 at 12:59 UTC

    If cpanm does not work, then try using ppm

    >c:\xampp\perl\bin\ppm install Net::SSLeay >c:\xampp\perl\bin\ppm install LWP::Protocol::https
    poj