Hello, I usually play with perl on linux, but for once I'm tasked to add a module on a Win2008 Server. Of course, I can't have any compilation tool on this server.
The goal is to add Net::SFTP.
Reading the doc, I found I should use ppm : I've added a repo (www.sisyphusion.tk).
It turns out I can't sync it
ppm> repo sync --force 2 Downloading www.sisyphusion.tk packlist...redirect ppm> repo list id pkgs name 1 11416 ActiveState Package Repository 2 0 www.sisyphusion.tk
I've tried to specifiy the module directly, but got an error :
ppm> install http://www.sisyphusion.tk/ppm/Net-SFTP-Foreign-Backend-Ne +t_SSH2.ppd --force ppm install failed: 501 Protocol scheme 'https' is not supported (Cryp +t::SSLeay not installed)
So, OK, you need Crypt::SSLeay to be able to do https : why not, let's do this :
ppm> install Crypt::SSLeay Downloading ActiveState Package Repository packlist...not modified Downloading Crypt-SSLeay-0.57...redirect Downloading Crypt-SSLeay-0.57...redirect ppm install failed: 501 Protocol scheme 'https' is not supported (Cryp +t::SSLeay not installed)
Wait... What !! I need Crypt::SSLeay to install Crypt::SSLeay ?? What am I missing here ? More info :
C:\Users\bla>perl -v This is perl, v5.8.8 built for MSWin32-x86-multi-thread (with 18 registered patches, see perl -V for more detail) C:\Users\bla>ppm-shell -v ppm 4.01 Copyright (C) 2007 ActiveState Software Inc. All rights reserved.

In reply to [SOLVED] Add Net::SFTP for Win 2008 by Burps

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.