cvs commit: modperl-2.0/xs/tables/current/ModPerl FunctionTable.pm

2002-03-29 Thread dougm
dougm 02/03/29 08:16:21 Modified:xs/tables/current/Apache ConstantsTable.pm FunctionTable.pm StructureTable.pm xs/tables/current/ModPerl FunctionTable.pm Log: sync Revision ChangesPath 1.23 +12 -1

Re: Unable to extract tomcat distribution - Please help

2002-03-29 Thread Mark Fowler
On Thu, 28 Mar 2002, Kairam, Raj wrote: Any help will be very much appreciated. Help with tomcat can be found on one of the Jakarta mailing lists. http://jakarta.apache.org/site/mail.html Later. Mark. -- s'' Mark Fowler London.pm Bath.pm

Attribute::Handlers - cant use under mod_perl?

2002-03-29 Thread Michael Schout
I made an attempt to use Attribute::Handlers under mod perl today, and it appears that this cant be done. What I was hoping to do was use Attribute::Deprecated, and Attribute::Profiled in my perl handlers.That way I could say something like: package MyHandler; sub whatever : Profiled { ...

Re: Attribute::Handlers - cant use under mod_perl?

2002-03-29 Thread Jim Smith
On Fri, Mar 29, 2002 at 11:34:26AM -0600, Michael Schout wrote: Has anyone else tried to use Attribute::Handlers under mod_perl? Any success stories? Take a look at Apache::Handlers :) I've been able to get both forms working (attribute and block). Attribute::Handlers does require perl

Re: Be carefull with apache 1.3.24

2002-03-29 Thread Larry Leszczynski
On 3/23/02 8:01 PM, Pedro Melo Cunha wrote: The problem is that 1.3.24 final also has that bug: only the last set-cookie will reach your browser. Another problem that bit me is that 1.3.24 mod_proxy is returning HTTP/1.1 chunked encoding responses to HTTP/1.0 clients:

Problems building Apache-AuthenSmb on Windows

2002-03-29 Thread Pete Kelly
Please forgive the fact this isn't a specific mod_perl question, but I have been trying to install the Apache-AuthenSmb module for over a week without success:-( I have tried using ppm, but I have been informed this is only built for Linux. Apache-AuthenSmb apparently can't build without

Re: Be carefull with apache 1.3.24

2002-03-29 Thread John Siracusa
On 3/23/02 8:01 PM, Pedro Melo Cunha wrote: Looking at the change log, they mention a bug that multiple set-cookie's will fail (only the last one will be sent to the client, the proxy will eat the others). And it was true... The problem is that 1.3.24 final also has that bug: only the last

Re: Be carefull with apache 1.3.24

2002-03-29 Thread John Siracusa
On 3/29/02 1:11 PM, John Siracusa wrote: On 3/23/02 8:01 PM, Pedro Melo Cunha wrote: Looking at the change log, they mention a bug that multiple set-cookie's will fail (only the last one will be sent to the client, the proxy will eat the others). And it was true... The problem is that 1.3.24

Re: Be carefull with apache 1.3.24

2002-03-29 Thread John Siracusa
On 3/29/02 1:26 PM, John Siracusa wrote: Anyway, now that I have patched, working versions... Scratch that: the patch doesn't seem to work when I build a server with mod_ssl in it. Hrm... -John

Apache::Registry question

2002-03-29 Thread Kirk Rogers
How do i configure the httpd.conf file to maintain two different cgi-bin directories with Apache::Registry? Not sure if I'm asking the question correctly so here's a quick explanation. I have two cgi-bin directories under one Virtual host: VirtualHost 1.2.3.4 Alias /this/cgi-bin/

[PATCH] Apache::Session::Lock::File (Apache::Session 1.54)

2002-03-29 Thread Enrico Sorcinelli
Hi Jeffrey, I've found a bug in clean method of Apache::Session::Lock::File when check lockfiles last access time. In effects the result of expression: (stat($dir.'/'.$file))[8] - $now is always negative and lock dir cleanup isn't done. The patch simply inverts the check. Bye,