"While you cannot update the host’s set of installed libraries, you can create a new subdirectory, point the local cpan(m) command to it, install CPAN packages there, and arrange for that library to occur in the PERL5LIB library search list when your application runs. When you do this, Perl will see your locally-installed packages first."

What you say makes sense, but I don't have access to the server... It's a Yahoo Small Business server and all I can do is FTP files up...

What I do to get perl modules uploaded is first run the package on my laptop installation of cygwin with perl as follows:

 cpanm -vf --local-lib /home/dirname/perl5 LWP::Protocol::https

This forces installation into a directory I can control vs. cpan updating a directory that was installed as a package with the perl installation.
Then I use FileZilla to upload to a directory I create to hold all the perl modules my code needs to run.

Then place code in the perl .pl file to
 use lib "../lib4";
Which puts my path to the front of the path list.

Thank you very much for your help...


In reply to Re^3: Get https simple solution desired by tbone654
in thread Get https simple solution desired by tbone654

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.