Gossamer Forum
Home : Products : Gossamer Forum : Discussion :

Re: [vvf] Unable to read data... in CGI.pm

Quote Reply
Re: [vvf] Unable to read data... in CGI.pm In reply to
Hi,

Yes, we did a bit more research. It's still broken on mod_gzip with windows and apache, but that seems to be an old mod_gzip bug.

However, for mod_perl it was broken on windows. To fix, you replace:

binmode ($self->{fh});

with:

binmode(main::STDIN);

and:

read ($self->{fh}, $self->{buffer}, $bytes_to_read, $buffer_length);

with

read (main::STDIN, $self->{buffer}, $bytes_to_read, $buffer_length);

We'll have this updated in the next beta due out today.

Cheers,

Alex
--
Gossamer Threads Inc.
Subject Author Views Date
Thread Unable to read data... in CGI.pm vvf 3839 Oct 23, 2001, 6:00 PM
Thread Re: [vvf] Unable to read data... in CGI.pm
Alex 3706 Oct 23, 2001, 7:09 PM
Thread Re: [Alex] Unable to read data... in CGI.pm
vvf 3661 Oct 23, 2001, 8:07 PM
Thread Re: [vvf] Unable to read data... in CGI.pm
Alex 3689 Oct 30, 2001, 12:06 PM
Thread Re: [Alex] Unable to read data... in CGI.pm
vvf 3671 Oct 31, 2001, 12:09 AM
Thread Re: [vvf] Unable to read data... in CGI.pm
Alex 3643 Oct 31, 2001, 9:19 AM
Thread Re: [Alex] Unable to read data... in CGI.pm
vvf 3668 Nov 1, 2001, 12:25 PM
Thread Re: [vvf] Unable to read data... in CGI.pm
Alex 3626 Nov 1, 2001, 12:31 PM
Post Re: [Alex] Unable to read data... in CGI.pm
vvf 3605 Nov 1, 2001, 1:27 PM