stonebreaker has asked for the wisdom of the Perl Monks concerning the following question:
Sadly my webhost is technically challenged enough that they don't know how to fix this. Switching to another host where script works. Thanks to all your help.CGI.pm: Server closed socket during multipart read
#!/usr/bin/perl use Image::Magick; use CGI; my $req = new CGI; print "Content-type: text/html\n\n"; print "<h1>Test Result</h1>"; print "Everything OK";
#!/usr/bin/perl use CGI; my $req = new CGI; my $f = $req->param("TOPPIX"); print "Content-type: text/html\n\n"; print "<h1>Test Result</h1>"; print "Everything OK $f";
#!/usr/bin/perl use Image::Magick; use CGI; print "Content-type: text/html\n\n"; print "<h1>Test Result</h1>"; print "Everything OK";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: large file upload fails on 'new CGI' request
by marto (Cardinal) on Jun 12, 2005 at 00:50 UTC | |
by stonebreaker (Initiate) on Jun 14, 2005 at 03:43 UTC | |
by stonebreaker (Initiate) on Jun 16, 2005 at 23:01 UTC | |
|
Re: large file upload fails on 'new CGI' request
by zentara (Cardinal) on Jun 12, 2005 at 12:23 UTC | |
by stonebreaker (Initiate) on Jun 14, 2005 at 03:46 UTC | |
|
Re: large file upload fails on 'new CGI' request
by redhotpenguin (Deacon) on Jun 12, 2005 at 00:14 UTC | |
|
Re: large file upload fails on 'new CGI' request
by PodMaster (Abbot) on Jun 11, 2005 at 22:11 UTC | |
by stonebreaker (Initiate) on Jun 14, 2005 at 03:34 UTC |