Re: NTLM module and POST

2002-10-29 Thread Kaye-Smith Adam
Hello Gerald, I know it has been a while since this thread was active but I am also having the problem with posted variables being losed & it is also consistant with the problems below - ie if I wait 15 sec (keepalive setting) then the variable are posted ok. I took the script that you posted (wh

Fw: Apache::Clean, Apache::Compress, mod_gzip/deflate, cross site scripting and more.

2002-10-29 Thread Slava Bizyayev
Oops, Now it should be attached... :-) Slava - Original Message - From: "Slava Bizyayev" <[EMAIL PROTECTED]> To: "Per Einar Ellefsen" <[EMAIL PROTECTED]> Cc: "mod_perl Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday, October 29, 2002 11:49 PM Subject: Re: Apache::Clean, Apache::Compress,

Re: Apache::Clean, Apache::Compress, mod_gzip/deflate, cross site scripting and more.

2002-10-29 Thread Slava Bizyayev
Hi Per, Web Content Compression FAQ is attached in POD format. Please, let me know if you find something formatted inappropriately. Thanks, Slava - Original Message - From: "Per Einar Ellefsen" <[EMAIL PROTECTED]> To: "Slava Bizyayev" <[EMAIL PROTECTED]> Cc: "mod_perl Mailing List" <[EM

HELP with mod_perl version

2002-10-29 Thread Alan Chung
Hi, I have tried to upgrade my apache from 1.3.12 to 1.3.26 and openssl from 0.9.5a to 0.9.6g. But when I upgraded mod_perl from 1.24 to 1.26 (it seems that I have to), it could be compiled with no error but httpd couldn't be started with the following error: Apache.pm version 1.26 required! /

[mp2.0] Apache::SubProcess deFUNct sub-process

2002-10-29 Thread Imago
-8<-- Start Bug Report 8<-- 1. Problem Description: Apache::SubProcess does not appear to be 'fully' working. When calling: Apache::SubProcess::spawn_proc_prog($r,'/tmp/proc.pl'); Process tree looks like: root 3239 /usr/local/

RE: FW: mod_perl / PerlAuthenHandler question

2002-10-29 Thread Mitchel, Jennifer (Jem)
Geoff, Thank you S much for your help. I used the status-perl?hooks and even though I am 200% positive I built mod_perl with EVERYTHING=1 (it was in the command history) the Authentication hook was Disabled. So I rebuilt my mod_perl this time using all the options listed for perl Makef

Re: Same $dbh under different pids?

2002-10-29 Thread Richard Clarke
harm wrote: Moi, a quick question: is it possible to have the 'same' dbh across the apache children even if you do your best not to? This minimalistic handler: use strict; package Foo; use Apache::DBI; use DBI; use Apache::Constants qw':common'; my $dbh; You haven't initialised this, so each

Same $dbh under different pids?

2002-10-29 Thread harm
Moi, a quick question: is it possible to have the 'same' dbh across the apache children even if you do your best not to? This minimalistic handler: use strict; package Foo; use Apache::DBI; use DBI; use Apache::Constants qw':common'; my $dbh; $Apache::DBI::DEBUG = 1; sub handler { my $r = sh

RE: mod_perl hangs on apache 2.0.43 (w32)

2002-10-29 Thread Stone, Derrick J
I'll work on deciphering the CVS system. Downloading the binaries works fine... mod_perl executes and serves. This tells me that something is missing in the compiling procedure, so I'll restart the process by getting the latest of everything and compiling again. I sure appreciate your note. De

Re: mod_perl hangs on apache 2.0.43 (w32)

2002-10-29 Thread Randy Kobes
On Tue, 29 Oct 2002, Stone, Derrick J wrote: > I noticed a similar thread from earlier this month, and I was > hoping that someone has encountered and uncovered the problem. > > Wishful thinking, right? :) > I have compiled Apache 2.0.43 from the source using the > default options and adding

re: solaris 2.6, mod_perl 1.27, apache 1.3.27, make test fails

2002-10-29 Thread John E. Mendenhall
Jie, > Do you have multiple versions of perl installed? Yes. > Try a clean installation of perl and use the same > compiler and same flags in building everything. We will be attempting to not upgrade perl, but rather, use our older perl 5.004_04 that was working before, and just upgrade the apa

re: solaris 2.6, mod_perl 1.27, apache 1.3.27, make test fails

2002-10-29 Thread John E. Mendenhall
Ged, > What were the problems with 5.6.1? Have you got a spare machine/disc > pack that you can use to do a completely fresh installation? No other machine available immediately. 5.6.1 got us up and running, but it crashed as soon as we made a request to the server. No one could help me here,

re: solaris 2.6, mod_perl 1.27, apache 1.3.27, make test fails

2002-10-29 Thread John E. Mendenhall
Ged, > Did you build your Perl 5.8.0? Yes. I will be trying to use our original perl (5.004_04), downgrading some of the required perl modules we use to see if that works any better.

mod_perl hangs on apache 2.0.43 (w32)

2002-10-29 Thread Stone, Derrick J
I noticed a similar thread from earlier this month, and I was hoping that someone has encountered and uncovered the problem. Wishful thinking, right? I have compiled Apache 2.0.43 from the source using the default options and adding the openssl module. I have tried both perl 5.6.1 an

Re: FW: mod_perl / PerlAuthenHandler question

2002-10-29 Thread Ruslan U. Zakirov
MJJ> Mitchel, Jennifer (Jem) wrote: MJJ> > The machine does belong to my org & my login does not have root access. I will do the MJJ> > /perl-status?hooks as soon as I can be let onto the machine with root access. MJJ> > MJJ> > I did print out the global hash %Apache::MyConfig::Setup and here

Re: FW: mod_perl / PerlAuthenHandler question

2002-10-29 Thread Geoffrey Young
Mitchel, Jennifer (Jem) wrote: the line shift->send_http_header('text/plain'); is giving me the error: Can't call method "send_http_header" on an undefined value it's not a normal cgi script - you need to run it from a /perl-bin or other where you already have an Apache::Registry setup.

RE: FW: mod_perl / PerlAuthenHandler question

2002-10-29 Thread Mitchel, Jennifer (Jem)
the line shift->send_http_header('text/plain'); is giving me the error: Can't call method "send_http_header" on an undefined value -Original Message- From: Geoffrey Young [mailto:geoff@;modperlcookbook.org] Sent: Tuesday, October 29, 2002 8:18 AM To: Mitchel, Jennifer (Jem) Cc: '[E

Re: FW: mod_perl / PerlAuthenHandler question

2002-10-29 Thread Geoffrey Young
Mitchel, Jennifer (Jem) wrote: > The machine does belong to my org & my login does not have root access. I will do the > /perl-status?hooks as soon as I can be let onto the machine with root access. > > I did print out the global hash %Apache::MyConfig::Setup and here is the result > > Apache_Sr

RE: FW: mod_perl / PerlAuthenHandler question

2002-10-29 Thread Mitchel, Jennifer (Jem)
The machine does belong to my org & my login does not have root access. I will do the /perl-status?hooks as soon as I can be let onto the machine with root access. I did print out the global hash %Apache::MyConfig::Setup and here is the result Apache_Src => /web/server/apache/1.3.22-sourc

Re: FW: mod_perl / PerlAuthenHandler question

2002-10-29 Thread Geoffrey Young
Mitchel, Jennifer (Jem) wrote: > Steve, > > I have no objection to replying to the mod_perl list. I have no idea what is wrong & I > am so new at all of this that the more people who might have an idea the better. > > > I am running Apache 1.3.22 and mod_perl 1.21 on a Sun Solaris 2.6 machine.

Re: Communication between handlers

2002-10-29 Thread Geoffrey Young
Ruslan U. Zakirov wrote: Hi! Please point me to good documentation about subj. Is it possible to initialize some class(MyProjConfig for example) with some params in first content handler, and then send it trought other handlers, all it within only one request? see $r->pnotes() in man Apache an

Re: Communication between handlers

2002-10-29 Thread Mike P. Mikhailov
Hello Ruslan U. Zakirov, Tuesday, October 29, 2002, 4:02:40 PM, you wrote: RUZ> Hi! RUZ> Please point me to good documentation about subj. RUZ> Is it possible to initialize some class(MyProjConfig for example) RUZ> with some params in first content handler, and then send it trought RUZ> other han

Communication between handlers

2002-10-29 Thread Ruslan U. Zakirov
Hi! Please point me to good documentation about subj. Is it possible to initialize some class(MyProjConfig for example) with some params in first content handler, and then send it trought other handlers, all it within only one request? Thank you beforehead. _

re: solaris 2.6, mod_perl 1.27, apache 1.3.27, make test fails

2002-10-29 Thread Ged Haywood
Hi there, On Mon, 28 Oct 2002, John E. Mendenhall wrote: > We built our own Perl 5.8.0, as well as Perl 5.6.1. We had different > problems with 5.6.1. [snip] > > Any other suggestions? What were the problems with 5.6.1? Have you got a spare machine/disc pack that you can use to do a completel