Doug MacEachern wrote:
>
> On Wed, 8 Aug 2001, Jerry Baker wrote:
> ....
> > There are two crashes in serial fashion immediately as soon as the form
> > is posted via mod_ssl. Here they are in the order they appear on the
> > machine:
>
> if you could post your test case (your client, whats posted from the
> client, what handles the post data, etc.), i'll look at in the
> morning. i've just been testing with:
>
Sure. Using Netscape 4.78, IE 5.5, or Mozilla 0.9.2. The POST consists
of a simple form containing one text area. Fill the text area with a few
kilobytes of plain text and post it. POST is handled by a Perl script as
follows:
-----------------------------------------------
#!C:\perl\bin\perl.exe
use CGI qw("param");
$variable = param("textarea");
open (FILE, ">test.txt") || die $!;
print FILE $variable;
close FILE;
------------------------------------------------
--
Jerry Baker
PGP Key: http://www.jerrybaker.org/pgp.html
LAME MP3 Encoder Binaries: http://www.jerrybaker.org/lame/
Apache 2.0 Web server Installer: http://www.jerrybaker.org/apache/