Re: mod_perl / Perl5.10 / Win32 ?

2008-02-20 Thread Foo JH
Thanks! I mean for compiling for 5.10! Randy Kobes wrote: As there's been several requests for this, I've put up an ActivePerl 10xx ppm package of mod_perl2, based on the current svn sources, at http://cpan.uwinnipeg.ca/PPMPackages/10xx/ which you can install via C:\> ppm install htt

Re: mod_perl / Perl5.10 / Win32 ?

2008-02-20 Thread Randy Kobes
On Wed, 20 Feb 2008, Dami Laurent (PJ) wrote: Hi all, I don't know where to find answers to the following questions, so better ask the list : - 1) is modperl2 currently compatible with Perl 5.10 ? If not, are some people working on it ? For which target date ? - 2) if the answer is YES, then

[Fwd: [RELEASE CANDIDATE] Apache-Reload-0.10-RC5]

2008-02-20 Thread Fred Moyer
FYI - RC5 has gone through some vetting on the dev list and no test failures have been found so far. Please take if for a spin if you have a chance and report back success or failure. http://people.apache.org/~phred/Apache-Reload-0.10-RC5.tar.gz Original Message

$r->add_output_filter using core filters

2008-02-20 Thread Fred Moyer
Greetings, Is it possible to dynamically add core output filters such as INCLUDE with $r->add_output_filter('INCLUDE')? The docs indicate that PerlSetOutputFilter INCLUDE is ok, but it looks like $r->add_output_filter is restricted to perl handlers. I tried add_output_filter with INCLUDE, but re

Re: mp2 and post/get params

2008-02-20 Thread Perrin Harkins
On Feb 20, 2008 12:54 PM, Kirk <[EMAIL PROTECTED]> wrote: > I'm new to mp2 and have a relatively old application that used the mp1 > implementation of grabbing get/post params from incoming requests Use Apache2::Request (in the libapreq2 distribution on CPAN) or CGI.pm. > # assign some value > $r

unsuscribe

2008-02-20 Thread RGKärcher
unsuscribe Ricardo german Kärcher [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED] Yahoo! Encuentros. Ahora encontrar pareja es mucho más fácil, probá el nuevo Yahoo! Encuentros http://yahoo.cupidovirtual.com/servlet/NewRegistration

Re: mp2 and post/get params

2008-02-20 Thread Colin Wetherbee
Kirk wrote: I'm new to mp2 and have a relatively old application that used the mp1 implementation of grabbing get/post params from incoming requests: $r = shift; # grab incoming value my $value = $r->param('name'); ... ... # assign some value $r->param('key' => 'val'); And of course, I need

mp2 and post/get params

2008-02-20 Thread Kirk
I'm new to mp2 and have a relatively old application that used the mp1 implementation of grabbing get/post params from incoming requests: $r = shift; # grab incoming value my $value = $r->param('name'); ... ... # assign some value $r->param('key' => 'val'); And of course, I need to consolidate

Re: mod_perl / Perl5.10 / Win32 ?

2008-02-20 Thread Colin Wetherbee
Dami Laurent (PJ) wrote: I don't know where to find answers to the following questions, so better ask the list : - 1) is modperl2 currently compatible with Perl 5.10 ? If not, are some people working on it ? For which target date ? - 2) if the answer is YES, then did anybody compile it into a P

mod_perl / Perl5.10 / Win32 ?

2008-02-20 Thread Dami Laurent (PJ)
Hi all, I don't know where to find answers to the following questions, so better ask the list : - 1) is modperl2 currently compatible with Perl 5.10 ? If not, are some people working on it ? For which target date ? - 2) if the answer is YES, then did anybody compile it into a PPM for Win32 ? Did

Re: mod_perl

2008-02-20 Thread Kaushal Shriyan
On Feb 20, 2008 8:54 PM, André Warnier <[EMAIL PROTECTED]> wrote: > > > Kaushal Shriyan wrote: > > hi > > > > I am running apache2 and have installed libapache2-mod-perl2 on Ubuntu 7.04 > > > [...] > > How can i verify whether my apache2 has mod_perl support into it > > Restart your Apache server,

Re: mod_perl

2008-02-20 Thread André Warnier
Kaushal Shriyan wrote: hi I am running apache2 and have installed libapache2-mod-perl2 on Ubuntu 7.04 [...] How can i verify whether my apache2 has mod_perl support into it Restart your Apache server, then look in it's "error.log" file (/var/log/apache2/error.log ?) It should have a lin

mod_perl

2008-02-20 Thread Kaushal Shriyan
hi I am running apache2 and have installed libapache2-mod-perl2 on Ubuntu 7.04 $dpkg -l | grep apache2 ii apache22.2.3-3.2ubuntu2.1 Next generation, scalable, extendable web server $ dpkg -l | grep libapache2 ii libapache2-mod-perl2

RE: Problem running Perl scripts with mod_perl from Alias directory

2008-02-20 Thread Billeb, Andrew (ATS, IT)
Thanks Colinyou're right, my wording wasn't great. If I click the submit button, the page just resets to the default page. (To be more clear.there is a popup_menu and a submit button. If I select a value in the popup_menu, and then click submit, the page just resets to how it appeared b

[MP2][QUESTION]Attribute::Handlers usage with mod_perl

2008-02-20 Thread titetluc titetluc
Hello all, I would like to use attributes (Attribute::Handlers) in a mod_perl module. I defined my attribute: use Attribute::Handlers; sub Catch_error ATTR(CODE, BEGIN) { ... } My module uses this attribute: sub foo :Catch_error{ } But this does not work. I searched in the mod_perl mailing l

Re: handler using a module

2008-02-20 Thread Raymond Wan
Hi Perrin, Perrin Harkins wrote: Yes, there is. Read the information in the Mason documentation about namespaces. There should be examples in there of how to do it. Thanks for the tip; I found it quite easily in the documentation and indeed there are examples and at least two options to