in reply to Re: Download of https Pages
in thread Download of https Pages

thanks for your reply, Net::SSLeay is installed.
I didn't really do anything about the perl env. I just executed the batch script. And for the webpage i set the path to perl via "adding Handler".

Replies are listed 'Best First'.
Re^3: Download of https Pages
by marto (Cardinal) on Oct 26, 2017 at 14:29 UTC

    You need to stop doing things you don't understand and learn how to use/calibrate the tools you've chosen to use.

      learning by doing

        "I read that some people assumed a compartiblity problem" + Installing different versions of perl without understanding the problem or the environment issues isn't learning anything, it's just senseless doing.

        Compare the results of this script with browser/command line

        #!perl use strict; use warnings; print "Content-Type: text/plain\n\n"; my @path = split ';',$ENV{PATH}; print join "\n","$^X - $^V",'PATH', (grep /perl/i,@path),'@INC',@INC;
        poj
Re^3: Download of https Pages
by Anonymous Monk on Nov 01, 2018 at 19:00 UTC

    amitsq:

    Did you find a solution? I have the *exact* same problem.