Re: [OT] Perl vs. PHP..... but where is mod_perl?

2002-10-21 Thread Alfred Vahau
It is now clear that the article is no longer available so I can't have first hand information. But the listings on the subject is clear what the issue is all about. In this part of the world where open source software is yet to make its impact, the language war does a lot of damage to our cause he

Re: [OT] Perl vs. PHP..... but where is mod_perl?

2002-10-21 Thread Jeff Stuart
Ok, I've been watching the list for most of the day and watching "bashing" of PHP (which IMHO is idiotic and immature but again, JMHO). I have ALWAYS said, use the right tool for the right job. PHP has it's place. IMNSHO, it's place is web interfaces. It's GOOD at that. That's what it ORIGI

Re: [OT] Perl vs. PHP..... but where is mod_perl?

2002-10-21 Thread Jeff Stuart
Ok, I've been watching the list for most of the day and watching "bashing" of PHP (which IMHO is idiotic and immature but again, JMHO). I have ALWAYS said, use the right tool for the right job. PHP has it's place. IMNSHO, it's place is web interfaces. It's GOOD at that. That's what it ORIGI

Re: [OT] Perl vs. PHP..... but where is mod_perl?

2002-10-21 Thread Thomas Eibner
On Fri, Oct 18, 2002 at 05:05:47PM +0100, Jeff AA wrote: > - I get > > The requested story: 19716 has not been published (set live) yet. > > when I visit http://www.newsfactor.com/perl/story/19716.html > > Do you think the lists comments upset someone? 8-) It better have. I'm sure the p

FW: [JOB - Florida]

2002-10-21 Thread Tammy Orange
> Sr. Software Engineer > > Senior-level software engineers to work in the Applications Development > group creating SportsLine.com's suite of fantasy sports products and our > personalized sports site. > http://www.sportsline.com > > Responsibilities: > >Develop, test, maintain, and support hig

Re: getting the PID for a request

2002-10-21 Thread Damyan Ivanov
On Thu, Oct 17, 2002 at 03:56:55PM +0530 Sylbert L wrote: > Is there any way I can get the Process Id or thread ID for a particular > process / thread that is handling my request ? thanks a bunch .. What's wrong with $$ ? > dam -- Damyan Ivanov Creditreform Bulgaria

make test can't resolve modules to test with

2002-10-21 Thread Dale Bewley
Trying to build mod_perl-1.99_07 on Solaris 8 with perl 5.8.0 and apache 2.0.43. make test completely fails. It seems like it isn't using @INC. Because even though the dir containing a package is listed in @INC the test can't resolve the module. Here's output from an individual test. [root@host

Re: Apache::AuthCookie in mod_perl 1.99_5

2002-10-21 Thread Michael Schout
Any comments? AuthCookie has not yet been ported to mod_perl 2.0. Mike

[DIGEST] mod_perl digest 2002/10/07

2002-10-21 Thread jgsmith
-- mod_perl digest October 7, 2002 - October 20, 2002 -- Recent happenings in the mod_perl world... Features o

Minor bug in AuthCookieDBI ?

2002-10-21 Thread George Valpak
Hi - I am wondering if there is a bug in AuthCookieDBI.pm? There is function group which is called to verify the user's group when there is a "Require group" directive. It starts like this: sub group($$\@) { my( $self, $r, @groups ) = @_; When more than one group is specified in the R

Handler Access to vars created by other modules. (modperl 2.0)

2002-10-21 Thread Erich Oliphant
Hi, I am creating a handler that logs key (request) variables passed from our client application.  I need to tie the entries I create to entries in the apache request log.  I was thinking that I could use the UNIQUE_ID created by mod_unique_id (i.e. stick it in access_log and the log generat

RE: SSL <-> mod_gzip <-> mod_perl = mod_proxy error

2002-10-21 Thread Nigel Hamilton
HI Adam, Your speed vs time point is a good one. If the network is fast then the time it takes the CPU to do the compression may negate any speed benefits from compressing the message. However, compression is generally worth it because: * HTML compresses well - messages o

Re: SSL <-> mod_gzip <-> mod_perl = mod_proxy error

2002-10-21 Thread Tom Hukins
On Mon, Oct 21, 2002 at 08:11:16AM -0500, Nigel Hamilton wrote: > > * Even though your network may be fast - the last mile over a 28.8 K > modem can be slow - and compression helps here Most modems use compression protocols such as V.42bis. You don't gain much, if anything, from compressing dat

Re: Handler Access to vars created by other modules. (modperl 2.0)

2002-10-21 Thread Perrin Harkins
Erich Oliphant wrote: I am having difficulty accessing this variable (via the ENV hash). I decided to make it a PerlLogHandler and register it REALLY_LAST, thinking that mod_unique_id would've exported UNIQUE_ID prior to that. However, that does not seem to be the case :) Something is wrong