Re: Fix: Socket problem w/ apache & perl cgi (fwd)

2004-10-06 Thread Reini Urban
Christopher Faylor schrieb: On Thu, Oct 07, 2004 at 03:06:02AM +0200, Reini Urban wrote: Larry Hall schrieb: Yup, that's a known issue. It's not actually Cygwin that requires the 'SYSTEMROOT' environment variable setting. It's winsock. :-( "Known Issue". How I hate that word! Ok, I'll setup my p

Re: Fix: Socket problem w/ apache & perl cgi (fwd)

2004-10-06 Thread Christopher Faylor
On Thu, Oct 07, 2004 at 03:06:02AM +0200, Reini Urban wrote: >Larry Hall schrieb: >>Yup, that's a known issue. It's not actually Cygwin that requires the >>'SYSTEMROOT' environment variable setting. It's winsock. :-( > >"Known Issue". How I hate that word! > >Ok, I'll setup my private wikipage o

Re: Fix: Socket problem w/ apache & perl cgi (fwd)

2004-10-06 Thread Reini Urban
Larry Hall schrieb: Yup, that's a known issue. It's not actually Cygwin that requires the 'SYSTEMROOT' environment variable setting. It's winsock. :-( "Known Issue". How I hate that word! Ok, I'll setup my private wikipage on just a wiki which will suite me. (and which allows it). I will keep y

Re: Fix: Socket problem w/ apache & perl cgi (fwd)

2004-10-06 Thread Larry Hall
>-- Forwarded message -- >Date: Wed, 6 Oct 2004 12:18:29 -0700 >From: Eric Davis <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Cc: [EMAIL PROTECTED] >Subject: Fix: Socket problem w/ apache & perl cgi > > >Hi David, > >I came across your pos

Fix: Socket problem w/ apache & perl cgi (fwd)

2004-10-06 Thread David A. Rogers
iling list as he is not subscribed. dar -- Forwarded message -- Date: Wed, 6 Oct 2004 12:18:29 -0700 From: Eric Davis <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Fix: Socket problem w/ apache & perl cgi Hi David, I came across your pos

Re: Socket problem w/ apache & perl cgi - and mysql

2004-08-01 Thread darogers
OTECTED] > Subject: Re: Socket problem w/ apache & perl cgi - and mysql > > > On Fri, 31 Jul 2004, Igor Pechtchanski wrote: > > > >> [david] I have a snippet of perl code that runs fine at the bash prompt > but fails > >> when run under apache as a cgi app.

Re: Socket problem w/ apache & perl cgi - and mysql

2004-07-31 Thread Pablo Marin Garcia
On Fri, 31 Jul 2004, Igor Pechtchanski wrote: >> [david] I have a snippet of perl code that runs fine at the bash prompt but fails >> when run under apache as a cgi app. Hello Igor and David I have had also the same problem one month ago and I was unable to solve it and ended using the w

Re: Socket problem w/ apache & perl cgi

2004-07-30 Thread David A. Rogers
uname -a = CYGWIN_NT-5.1 Thor 1.5.10(0.116/4/2) 2004-05-25 22:07 i686 unknown unknown Cygwin I run apache from the command line like this: /usr/sbin/apachectl start cygwin=ntsec Windows-wise I have administrator priviledges. I have attached cygcheck dar On Fri, 30 Jul 2004, Igor Pechtchansk

Re: Socket problem w/ apache & perl cgi

2004-07-30 Thread Igor Pechtchanski
On Fri, 30 Jul 2004, David A. Rogers wrote: > I have a snippet of perl code that runs fine at the bash prompt but fails > when run under apache as a cgi app. > > === > #!/usr/bin/perl > > use strict; > use IO::Socket; > > > print "Content-type: text/plain\n\n";

Socket problem w/ apache & perl cgi

2004-07-29 Thread David A. Rogers
I have a snippet of perl code that runs fine at the bash prompt but fails when run under apache as a cgi app. === #!/usr/bin/perl use strict; use IO::Socket; print "Content-type: text/plain\n\n"; my $socket = IO::Socket::INET->new(PeerAddr => "127.0.0.1",