Adrianh, Tachyon and Aging Acolyte, Thanks to you guys I finally got the file upload nightmare saga solved - thanks very much for your help, all. I put in all the error checking that you suggested & re-wrote the code in a mini version that finally began to work, to my surprise & delight. The working bit of code looks like this:
open(OUTFILE, ">$UPLOAD_DIR\/$file_name") or die "Upload failed ($!)"; binmode $fh; binmode OUTFILE; while ($bytes=read($fh, $buffer, 1024)) { $bytes_read += $bytes; print OUTFILE $buffer; } die "read failure ($!)" unless defined($bytes);
I think the last line is that bit that made the crucial difference. I didn't know that about 'read'. Anyway, thanks again, your help is very much appreciated. Wish I could get you all a Monastery mead!

In reply to Re: Yet another CGI Upload problem - not like the others! by stuayres
in thread Yet another CGI Upload problem - not like the others! by stuayres

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.