in reply to Re: https error
in thread https error

yes i have openssl installed on my producation server

Replies are listed 'Best First'.
Re^3: https error
by dorko (Prior) on Nov 01, 2018 at 12:57 UTC
    Hi bigup401,

    Have you tried curl or wget on an HTTPS URL from the command line?

    Do you have Net::SSLeay installed?

    Cheers,

    Brent

    -- Yeah, I'm a Delt.
Re^3: https error
by Veltro (Hermit) on Nov 02, 2018 at 14:45 UTC

    As dorko mentions you can check if Net::SSLeay is installed. However to enable HTTPS support for LWP this is only a part of what is needed. HTTPS support for LWP depends on LWP::Protocol::https which on its turn depends on IO::Socket::SSL, and that depends on Net::SSLeay.

    So the correct way to enable HTTPS support for LWP is:

    cpan install LWP::Protocol::https   # or equivalent

    I do not know about the other backends.