Re: Can't locate object method BINMODE via package Apache

2000-04-12 Thread Ken Williams
[EMAIL PROTECTED] (Doug MacEachern) wrote: On Tue, 11 Apr 2000, Ken Williams wrote: Change that to binmode(STDOUT) and it should work. Since STDOUT is tied, I think Perl is interpreting that as STDOUT-binmode. that's not the problem, see my reply to Roca. Oops, I should have looked before I

Can't locate object method BINMODE via package Apache

2000-04-11 Thread Roca, Ignasi
I'm using mod_perl-1.21 and testing GD-1.25. When calling any of the demos examples given by GD-1.25 I have the error "Can't locate object method BINMODE via package Apache". The perl scripts are as follows: #!/usr/local/bin/perl use GD; print "Content-type: image/png\n\n"

Re: Can't locate object method BINMODE via package Apache

2000-04-11 Thread Matt Sergeant
On Tue, 11 Apr 2000, Roca, Ignasi wrote: I'm using mod_perl-1.21 and testing GD-1.25. When calling any of the demos examples given by GD-1.25 I have the error "Can't locate object method BINMODE via package Apache". The perl scripts are as follows: #!/usr/local/bin/pe

Re: Can't locate object method BINMODE via package Apache

2000-04-11 Thread Ken Williams
[EMAIL PROTECTED] (Roca, Ignasi) wrote: I'm using mod_perl-1.21 and testing GD-1.25. When calling any of the demos examples given by GD-1.25 I have the error "Can't locate object method BINMODE via package Apache". The perl scripts are as follows: #!/usr/local/bin/perl use GD; prin

Re: Can't locate object method BINMODE via package Apache

2000-04-11 Thread Doug MacEachern
On Tue, 11 Apr 2000, Roca, Ignasi wrote: I'm using mod_perl-1.21 and testing GD-1.25. When calling any of the demos examples given by GD-1.25 I have the error "Can't locate object method BINMODE via package Apache". the mod_perl cvs snapshot defines a BINMODE stub (5.6.0 added

Re: Can't locate object method BINMODE via package Apache

2000-04-11 Thread Doug MacEachern
On Tue, 11 Apr 2000, Ken Williams wrote: Change that to binmode(STDOUT) and it should work. Since STDOUT is tied, I think Perl is interpreting that as STDOUT-binmode. that's not the problem, see my reply to Roca.