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

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