Re: Trouble compiling mod_perl 1.24 with Apache 1.3.12

2000-08-09 Thread Frank D. Cringle
[EMAIL PROTECTED] (William R. Ward) writes: [EMAIL PROTECTED] writes: please use the [EMAIL PROTECTED] list for support questions. Then please put that e-mail address somewhere obvious on the perl.apache.org website. Yours was the only one I could find. (It was listed as [EMAIL PROTECTED]

RE: custom server string

2000-08-09 Thread Geoffrey Young
-Original Message- From: Dave Moore [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 08, 2000 5:55 PM To: [EMAIL PROTECTED] Subject: custom server string i need to change the outgoing Server header on all requests to our site. dont ask why I would want to do that. i have

Re: custom server string

2000-08-09 Thread Vivek Khera
"DM" == Dave Moore [EMAIL PROTECTED] writes: DM i need to change the outgoing Server header on all requests to our site. DM dont ask why I would want to do that. i have my orders. i read some old DM posts from the 90's which said I would have to write my own DM send_http_header() method. sounds

[BUG FIX] Apache.xs write_client

2000-08-09 Thread T.J. Mather
There are differences in the variable after a non-global substitution vs. a global substitution. After a non-global substitution, a reference to the scalar value is of type SVt_PVIV, as opposed to SVt_PV for global substituion. So I changed write_client() Apache.xs to also check if the

RE: custom server string

2000-08-09 Thread Geoffrey Young
-Original Message- From: Vivek Khera [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 09, 2000 10:43 AM To: [EMAIL PROTECTED] Subject: Re: custom server string "DM" == Dave Moore [EMAIL PROTECTED] writes: DM i need to change the outgoing Server header on all requests

make errors

2000-08-09 Thread Pamela O'Shea
Hi, i am trying to install mod_perl-1.24 on a redhat linux 6.2 box with kernel 2.2.16-3 and apache 1.3.12. Somebody had previosly installed modperl into the httpd binary on this box but it was not fully working, i am assuming that the previous installation is causing the make errors. I cant find

Re: make errors

2000-08-09 Thread G.W. Haywood
Hi there, On Wed, 9 Aug 2000, Pamela O'Shea wrote: errors when i run make: I'd delete the entire Apache and mod_perl source trees and start from scratch with new tarballs. Otherwise you could try `make clean' in both directories followed by the instructions in the Guide.

PerlCleanupHandler

2000-08-09 Thread Michael Peppler
Hi, We're seeing a number of requests where the write from apache to the client browser times out and the SIGALRM signal fires. Our Apache::Registry scripts in that case don't clean up correctly, leaving session lock files around, which of course causes that particular session to be screwed up

AIX 4.3.2, perl 5.6, mod_perl 1.24, apache 1.3.12 installation problems

2000-08-09 Thread Hey Boy
I have been going nuts with mod perl now. It just doesnt seem to built into apache at all Okay here is my platform AIX 4.3.2 with gcc 2.95.2 perl 5.6, apache 1.3.12, mod perl 1.24 Here are the config for mod perl perl Makefile.PL DO_HTTPD=1 APACHE_SRC=../apache_1.3.12/src \ USE_APACI=1

Authentication/Authorization

2000-08-09 Thread Eli Ben-Shoshan
All, I work at a large university where some faculty/staff need a way to only allow students to view certain web pages. Here at the university we have a central authentication system (based on kerberos) that has been extended to the browser. Basically the you login via SSL to a machine

Re: Trouble compiling mod_perl 1.24 with Apache 1.3.12

2000-08-09 Thread William R. Ward
Frank D. Cringle writes: [EMAIL PROTECTED] (William R. Ward) writes: [EMAIL PROTECTED] writes: please use the [EMAIL PROTECTED] list for support questions. Then please put that e-mail address somewhere obvious on the perl.apache.org website. Yours was the only one I could find. (It was

Re: Proxy setup w/ SSL

2000-08-09 Thread ___cliff rayman___
siberian wrote: . In the F5 world KeepAlives destroy rules based load sorry - but what's an F5 box? -- ___cliff [EMAIL PROTECTED]http://www.genwax.com/

RE: Proxy setup w/ SSL

2000-08-09 Thread Jerrad Pierce
F5 makes load balancers -Original Message- From: ___cliff rayman___ [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 09, 2000 1:18 PM To: modperl Subject: Re: Proxy setup w/ SSL siberian wrote: . In the F5 world KeepAlives destroy rules based load sorry - but what's an F5 box?

Re: AIX 4.3.2, perl 5.6, mod_perl 1.24, apache 1.3.12 installation problems

2000-08-09 Thread Jens-Uwe Mager
On Wed, Aug 09, 2000 at 04:48:33PM +, Hey Boy wrote: I have been going nuts with mod perl now. It just doesnt seem to built into apache at all Okay here is my platform AIX 4.3.2 with gcc 2.95.2 perl 5.6, apache 1.3.12, mod perl 1.24 perl 5.6 does need some patches that I did

Re: Flushing handler getting Open Sourced...

2000-08-09 Thread Andrew Chen
Yeah, that sounds about right... It's not at either extreme-- it doesn't keep EVERYTHING, and it doesn't kill the Apache child to clear the memory. I'm sure the exact directives can be thought out later. So who do I get in touch with in order for this stuff to get looked at for inclusion into

Re: Flushing handler getting Open Sourced...

2000-08-09 Thread Ken Williams
This is the place. =) Submit a proposal for how you think PerlRun should change, and get people to discuss it so you can settle on something that seems good. Then submit a patch, preferably against the CVS version. [EMAIL PROTECTED] (Andrew Chen) wrote: Yeah, that sounds about right... It's

Apache 1.3.12/mod_perl 1.24/Perl 5.6.0 crash

2000-08-09 Thread George Sanderson
I have Apache 1.3.12 using mod_perl 1.24 as a DSO, built with Perl 5.6.0 using Apache::AutoIndex 0.08 which is running on Linux 2.2.14. Everything works fine, until, I `apachectl stop`, then add the following to the httpd.conf: PerlModule Apache::AutoIndex When I do `bin/httpd -X` Linux does a

Re: [ANNOUNCE] Apache::Dispatch-0.03

2000-08-09 Thread Barrie Slaymaker
Roger Espel Llima wrote: @{"${class}::ISA"} Incidentally, does anyone know of a way to do this that works under strict? The above requires a "no strict 'refs'" to work. Something like this we3nt by on p5p a while ago (IIRCC): @{$main::{"$class\::"}-{ISA}} but that's a lot more

cvs commit: modperl/src/modules/perl Apache.xs

2000-08-09 Thread ask
ask 00/08/09 18:45:39 Modified:.Changes src/modules/perl Apache.xs Log: bug with Apache::print not dereferencing scalar referencess that are of type SVt_PVIV. Submitted by: T.J. Mather [EMAIL PROTECTED] Revision ChangesPath 1.504 +3 -0