Re: how do I get the request IP?

2006-10-23 Thread Juan Jose Natera
Hi, remote_ip() is the correct method name, if you are getting that error, I think it means you are using a version of mod_perl previous to 2.0.0. You can always perldoc ModuleName. JJ On 10/23/06, Steve Duran <[EMAIL PROTECTED]> wrote: It appears that perl.apache.org is down. I would

Re: Speaking at SCALE 5x

2007-02-07 Thread Juan Jose Natera
Just wanted to let everyone know, if you're going to SCALE ( Southern California Linux Expo ) next weekend or live in the LA area I'll be giving an introductory talk on mod_perl 2 on Sunday afternoon. Not that any of you really need an introduction to it! :) Also, LA.pm will have a

Re: i want to "die", but mod_perl won't let me

2007-02-21 Thread Juan Jose Natera
Hi, On 2/21/07, Jonathan Vanasco <[EMAIL PROTECTED]> wrote: startup.pl has this: use MyConfig::ServerLayout; and then: package MyConfig::ServerLayout; my $_environment= $ENV{'SERVER_TYPE'}; if ( !defined $_environment ) { die "ERROR! You

Re: Have I got mod_perl installed?

2007-02-28 Thread Juan Jose Natera
Hi, If I do: telnet localhost 80 I get: HTTP/1.1 403 Forbidden Date: Wed, 28 Feb 2007 16:53:29 GMT Server: Apache/2.0.52 (Fedora) <- Note no mod_perl here This can be configured with the Apache directive ServerTokens, so it's not weird. [snip] Yet I have a number of m

Re: Have I got mod_perl installed?

2007-02-28 Thread Juan Jose Natera
I was trying `perl -MCPAN -e 'install SOAP::Apache'. That actually tries to install SOAP::Lite t/06-modules...NOK 15# Failed test 15 in t/06-modules.t at line 24 fail #14 # t/06-modules.t line 24 is: $@ =~ /(Can\'t locate)|(XML::Parser::Lite requires)|(this is only version)|(load mo

Re: mod_perl MVC framework.

2007-10-24 Thread Juan Jose Natera
Hi Tyler > We are having difficulty finding a good MVC framework for perl. > > I have looked at HTML::Mason and the template toolkit today. > I am not quite sure mason is a MVC framework. The template toolkit > looks promising. Neither TT or Mason are MVC frameworks, but they can be used to prov

Re: perl at apachecon

2008-04-02 Thread Juan Jose Natera
> OSCON 2008 doesn't have much perl either. > > A disturbing trend. Have you actually looked at this year's Perl track at OSCON? http://en.oreilly.com/oscon2008/public/schedule/topic/80

Re: Good mp2 books?

2005-12-15 Thread Juan Jose Natera Abreu
book > and pretty much what started it all :) Talking about the eagle book, there is a similar book coming out april next year from apress, and it's for Apache 2: http://apress.com/book/bookDisplay.html?bID=397 -- Juan Jose Natera Abreu <[EMAIL PROTECTED]>

Re: Apache2::Cookies - getting all names

2005-12-26 Thread Juan Jose Natera Abreu
>new($r, -name => 'c1', -value => 'v1'); $c2 = Apache2::Cookie->new($r, -name => 'c2', -value => 'v2'); Regards, -- Juan Jose Natera Abreu <[EMAIL PROTECTED]>