in reply to Re^4: Why I can not acess files outside cgi-bin directory?
in thread Why can I not acess files outside cgi-bin directory?
Try copying it a chunk at a time. (Use File::Copy or DIY).
{ local $/ = \1024; local *_; while (<READ>) { print }; }
|
|---|