four points:
I had already tried the die "......$!" before I posted my original message.
please tell so if you're posting a question, so others don't make suggestions which are useless.
It didn't help because I'm testing this on a web server, through a browser, and the page I'm generating just terminates at the point of error without reporting the error.
this is because of the die(). if you can't see the errorlog (see below), then don't die, but just *print* the message. in either case, the message in $! *is* useful.
I also don't seem to have access to the error_log on this particular (institutional) server.
that's always bad. how do you want to develop if you can't see the errorlog? your best bet here is
use CGI::Carp qw/ fatalsToBrowser /;
you will get all runtime errors in the browser then. (and only activate that line when you're developing, so users don't see any detailed error messages that are meant to only be seen by you)

and as others have said, *please* check the filename, otherwise anybody can delete any file on your system which you (the webserver) has write access to.

In reply to Re^5: Why aren't these equivalent? by tinita
in thread Why aren't these equivalent? by Anonymous Monk

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.