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

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

Replies are listed 'Best First'.
Re^4: Download of https Pages
by amitsq (Beadle) on Oct 26, 2017 at 14:40 UTC
    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