Nobody said it wasn't dependent on anything else. It was only said that it didn't depend on things not inside the Perl core. And the error message tells us that the stuff from the Perl core is even there, but you're not allowed to get at it:

Can't load 'd:/perl/lib/auto/IO/IO.dll' for module IO: load_file:Acces +s is denied at d:/perl/lib/XSLoader.pm line 64. at d:/perl/lib/IO.pm line 11 Compilation failed in require at d:/perl/lib/IO/Handle.pm

This means that your web hoster is running a broken setup and basically Perl will be mostly unusable on the hoster you have. Either tell their tech support to fix it or find a new hoster.

As an explanation, the module IO::Handle is part of the Perl core and tries to load the file IO.dll which contains compiled parts needed for IO::Handle to work. IO::Handle is distributed with Perl, just as the IO.dll (or IO.so) part. Until your hosting support gives the web server user the permission to load these files, the Perl setup of that host will be broken.


In reply to Re^5: Why won't call to SendEasy 'send' sub won't work? by Corion
in thread Why won't call to SendEasy 'send' sub won't work? by Stoney

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.