[Fwd: [Announce] Call For Papers extended for ApacheCon US 2009]

2009-03-05 Thread Adam Prime
FYI Original Message Subject: [Announce] Call For Papers extended for ApacheCon US 2009 Date: Wed, 04 Mar 2009 22:37:13 -0600 From: William A. Rowe, Jr. Reply-To: planners-2009...@apachecon.com To: committ...@apache.org References: <20081107200919.29573.44...@eos.apache.org> I

unsubscribe

2009-03-05 Thread jing han
unsubscribe

Want module compatibility?

2009-03-05 Thread David Ihnen
Who doesn't want compatibility? Seriously though. Given the name of the 'Want' module ( http://search.cpan.org/~robin/Want-0.18/Want.pm ) its almost impossible to obtain meaningful search results on issues relating to it... (everybody has wants, even in perl!) so I'm resorting to asking here.

Weird issue with Mod perl, apache 2.2, perl 5.8, and windows

2009-03-05 Thread fREW Schmidt
Hello all! I am trying to get this one folder to use mod perl (it's some autocomplete scripts). I installed mod_perl via ppm install http://theoryx5.uwinnipeg.ca I added this to my apache config: LoadModule perl_module modules/mod_perl.so LoadFile "C:/perl/bin/perl58.dll" SetHandler perl-

mod_perl for bugzilla

2009-03-05 Thread Chen, Peter
I'm trying to use mod_perl for bugzilla I inserted these lines (as per their config instructions): PerlSwitches -I/home/Intranet/ssiweb/apache/htdocs/bugzilla -I/home/Intranet/ssiweb/apache/htdocs/lib -w -T PerlConfigRequire /home/Intranet/ssiweb/apache/htdocs/bugzilla/mod_perl.pl Rest

Re: mod_perl for bugzilla

2009-03-05 Thread Adam Prime
Chen, Peter wrote: *Apache2::SizeLimit not implemented on solaris at /Apache2/SizeLimit.pm line 95.\nBEGIN failed--compilation aborted at //Apache2/SizeLimit.pm line 98.\nCompilation failed in require at /htdocs/bugzilla/mod_perl.pl line 32.\nBEGIN failed--compilation aborted at

RE: mod_perl for bugzilla

2009-03-05 Thread Chen, Peter
Sorry, I forgot to mention I'm running on a sparc-solaris2.10 machine -Original Message- From: Adam Prime [mailto:adam.pr...@utoronto.ca] Sent: Thursday, March 05, 2009 6:31 PM To: Chen, Peter Cc: modperl@perl.apache.org Subject: Re: mod_perl for bugzilla Chen, Peter wrote: > > *Apach

Re: mod_perl for bugzilla

2009-03-05 Thread Perrin Harkins
On Thu, Mar 5, 2009 at 9:23 PM, Chen, Peter wrote: > Apache2::SizeLimit not implemented on solaris at /Apache2/SizeLimit.pm > line 95.\nBEGIN failed--compilation aborted at //Apache2/SizeLimit.pm > line 98.\nCompilation failed in require at /htdocs/bugzilla/mod_perl.pl > line 32.\nBEGI

RE: mod_perl for bugzilla

2009-03-05 Thread Chen, Peter
Sorry, sparc-solaris2.10 Perl version 5.8.8 Apache 2.2.10 -Original Message- From: Perrin Harkins [mailto:phark...@gmail.com] Sent: Thursday, March 05, 2009 6:37 PM To: Chen, Peter Cc: modperl@perl.apache.org Subject: Re: mod_perl for bugzilla On Thu, Mar 5, 2009 at 9:23 PM, Chen, Pe

Re: mod_perl for bugzilla

2009-03-05 Thread Adam Prime
Looks like sizelimit needs some love since 2.10 is < 2.6, but is actually a newer version. Adam Chen, Peter wrote: Sorry, sparc-solaris2.10 Perl version 5.8.8 Apache 2.2.10 -Original Message- From: Perrin Harkins [mailto:phark...@gmail.com] Sent: Thursday, March 05, 2009 6:37 PM

RE: mod_perl for bugzilla

2009-03-05 Thread Chen, Peter
Ok, so what do I do now? -Original Message- From: Adam Prime [mailto:adam.pr...@utoronto.ca] Sent: Thursday, March 05, 2009 7:06 PM To: modperl Subject: Re: mod_perl for bugzilla Looks like sizelimit needs some love since 2.10 is < 2.6, but is actually a newer version. Adam Chen, Pe

Re: mod_perl for bugzilla

2009-03-05 Thread Perrin Harkins
On Thu, Mar 5, 2009 at 10:18 PM, Chen, Peter wrote: > Ok, so what do I do now? Just take out the version check in SizeLimit for now. In the version you have it probably looks like this: if (SOLARIS && $Config{'osvers'} >= 2.6) { - Perrin