dolfantimmy
MIS
I have a fairly simple perl cgi script that generates a large ISO file (4GB). Perl is working fine from a CGI perspective because simple html generated by the perl cgi works fine. When executed at the shell, the perl script generates the large ISO file perfectly. However, when run via cgi, what is returned to the browser is a small 34k file.
I suspect either a timeout from apache, a size limitation, or both.
The html generated by perl is as follows:
Content-type: application/octet-stream;
Content-Disposition: attachment; filename="kickstart.iso"
Content-Transfer-Encoding: binary
The binary data follows immediately
I'm fairly green at HTML/CGI so any assistance might be appreciated.
I suspect either a timeout from apache, a size limitation, or both.
The html generated by perl is as follows:
Content-type: application/octet-stream;
Content-Disposition: attachment; filename="kickstart.iso"
Content-Transfer-Encoding: binary
The binary data follows immediately
I'm fairly green at HTML/CGI so any assistance might be appreciated.