in reply to Beating the system
I'm also at pair.com, and regularly upload files much larger than 35K. In comparing my upload script with yours, the only significant difference I see is that my read loop looks like
instead ofwhile ( <$fh> ) { print OUTPUT $_; }
Should that make a difference? At first glance, I don't see why it should. I might be on a box that's configured differently than the one you're one, or the box might be more lightly loaded.while ( read( $fh, $buffer, BUFFER_SIZE ) ) { print OUTPUT $buffer; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Beating the system
by Aristotle (Chancellor) on Sep 29, 2002 at 18:24 UTC |