Re: AuthenNTLM, IE, KeepAlives

2002-06-10 Thread Gerald Richter - ecos gmbh
> > The issue that I am having is that when I have KeepAlive turned on my > scripts won't get the params from the URI. But this only happens in > Internet Explorer. Opera works fine. > This normaly should not happen. How do you retrieve the parameters ? Gerald --

RE: AuthenNTLM, IE, KeepAlives

2002-06-10 Thread Harnish, Joe
Title: RE: AuthenNTLM, IE, KeepAlives I am using the CGI module(latest from CPAN).  -Original Message- From: Gerald Richter - ecos gmbh [mailto:[EMAIL PROTECTED]] Sent: Monday, June 10, 2002 3:44 AM To: Harnish, Joe; [EMAIL PROTECTED] Subject: Re: AuthenNTLM, IE, KeepAlives

RE: AuthenNTLM, IE, KeepAlives

2002-06-10 Thread Harnish, Joe
Title: RE: AuthenNTLM, IE, KeepAlives I am using Apache::PerlRun instead of Apache::Registry.  Could this be an issue?  -Original Message- From: Harnish, Joe Sent: Monday, June 10, 2002 8:34 AM To: 'Gerald Richter - ecos gmbh'; Harnish, Joe; '[EMAIL PROTECTE

Re: AuthenNTLM, IE, KeepAlives

2002-06-10 Thread Gerald Richter
RE: AuthenNTLM, IE, KeepAlives >I am using Apache::PerlRun instead of Apache::Registry. Could this be an issue? I am not using PerlRun, but maybe. Can try without it? Maybe just a small test script. Gerald - Gerald Richtere

RE: AuthenNTLM, IE, KeepAlives

2002-06-10 Thread Harnish, Joe
Title: RE: AuthenNTLM, IE, KeepAlives I changed to Apache::Registry and have been monkeying around with it.  I am going to look more into converting my CGI stuff to mod_perl.   I also changed my use CGI; to require CGI; like the documentation says but now it looks like it is sending the same

RE: AuthenNTLM, IE, KeepAlives, Post?

2002-06-11 Thread Harnish, Joe
Title: RE: AuthenNTLM, IE, KeepAlives, Post? Well, I have narrowed it down to the "POST" method on my forms.  If I replace them with "get"s it works 100%.  I am kind of wondering if this has to do with mod_perl and post because I have had this issue before when usi

RE: AuthenNTLM, IE, KeepAlives, Post?

2002-06-11 Thread Ged Haywood
Hi there, On Tue, 11 Jun 2002, Harnish, Joe wrote: > Does anyone know of issues with mod_perl and post? Here's one. 73, Ged. >From [EMAIL PROTECTED] Tue Jun 11 18:16:11 2002 Date: Wed, 20 Mar 2002 19:20:29 + (GMT) From: Ged Haywood <[EMAIL PROTECTED]> To: Stas Bekman <[EMAIL PROTECTED]>

RE: AuthenNTLM, IE, KeepAlives, Post?

2002-06-11 Thread Harnish, Joe
Title: RE: AuthenNTLM, IE, KeepAlives, Post? Ged, Will this help even when I am not up loading files?  Here is the test.pl script I am using. #!/usr/bin/perl require CGI; use strict; my $q = new CGI; print $q->header; print <         EODUMP print $q->p

RE: AuthenNTLM, IE, KeepAlives, Post?

2002-06-13 Thread Ged Haywood
Hi there, On Tue, 11 Jun 2002, Harnish, Joe wrote: > Will this help even when I am not up loading files? Not in itself, but it shows how easy it is to debug things like this with Perl. You can find out what's going on very easily by putting extra statements in the code. Try to read through