Re: XSLoader error

2006-01-26 Thread Randy Kobes
On Thu, 26 Jan 2006, Philippe M. Chiasson wrote: Ryan Perry wrote: on FreeBSD 5.4 I get: # perl Makefile.PL MP_APXS=/usr/local/apache2/bin/apxs String found where operator expected at /usr/local/lib/perl5/5.8.6/ mach/IO.pm line 11, near "XSLoader::load 'IO'" (Do you need to predeclare

Re: XSLoader error

2006-01-26 Thread Philippe M. Chiasson
Ryan Perry wrote: > on FreeBSD 5.4 I get: > > # perl Makefile.PL MP_APXS=/usr/local/apache2/bin/apxs > String found where operator expected at /usr/local/lib/perl5/5.8.6/ > mach/IO.pm line 11, near "XSLoader::load 'IO'" > (Do you need to predeclare XSLoader::load?) > syntax error at /usr

Re: CSS errors on perl.apache.org

2006-01-26 Thread Tyler MacDonald
allan juul <[EMAIL PROTECTED]> wrote: > actually we can remove that stuff from the style sheet since they were > introduced when trying to avoid using a transparent gif. a recent update > on the src files this transparent gif was introduced making those class > selectors unnesecary > > i'll send a

Re: Catching (Fatal?) Errors

2006-01-26 Thread Jonathan Vanasco
On Jan 26, 2006, at 9:27 AM, Perrin Harkins wrote: ady more optimization than I would do. I just roll back at the end of every request. If there's nothing to roll back, it shouldn't take long. However, if you catch your execptions, you'll know when you've had one, and can roll back then

Re: XSLoader error

2006-01-26 Thread Ryan Perry
Sorry, XSLoader-0.06 just installed via CPAN after I got the error, but didn't help. Could it be because the previous mod_perl2 (2.02) is still around somewhere? Thanks! On Jan 26, 2006, at 10:34 AM, Steven M Peters wrote: On Thu, Jan 26, 2006 at 10:28:59AM -0600, Ryan Perry wrote: on Fre

XSLoader error

2006-01-26 Thread Ryan Perry
on FreeBSD 5.4 I get: # perl Makefile.PL MP_APXS=/usr/local/apache2/bin/apxs String found where operator expected at /usr/local/lib/perl5/5.8.6/ mach/IO.pm line 11, near "XSLoader::load 'IO'" (Do you need to predeclare XSLoader::load?) syntax error at /usr/local/lib/perl5/5.8.6/mach/IO.

Re: Several versions of a modperl handler in a server instance

2006-01-26 Thread Tomas Zerolo
On Thu, Jan 26, 2006 at 02:15:56PM +0100, Tom Schindl wrote: [...] > http://perl.apache.org/docs/2.0/user/config/config.html#C_Parent_ > > is more appropriate for this problem ;-) Just to get that into the archives. Right, thanks. But with your original pointer it was easy to find out that. Thank

Re: Catching (Fatal?) Errors

2006-01-26 Thread Perrin Harkins
Jonathan Vanasco wrote: so i'm currently using a cleanup handler which checks my DB class to see if the current instantiation of the DB writer handle is in a transaction. that works fine, but at the risk of screaming 'too much optimization', if there's some internal var that i can acce

Re: Several versions of a modperl handler in a server instance

2006-01-26 Thread Tom Schindl
Tomas Zerolo wrote: > On Thu, Jan 26, 2006 at 11:27:44AM +0100, Tom Schindl wrote: > [...] > >>In mp2: >> - use different VHost with different Inc-paths >>http://perl.apache.org/docs/2.0/user/config/config.html#C_PerlOptions_ > > > Wow. My imagination was too small to come up with that. Thanks a

Re: Several versions of a modperl handler in a server instance

2006-01-26 Thread Tomas Zerolo
On Thu, Jan 26, 2006 at 11:27:44AM +0100, Tom Schindl wrote: [...] > In mp2: > - use different VHost with different Inc-paths > http://perl.apache.org/docs/2.0/user/config/config.html#C_PerlOptions_ Wow. My imagination was too small to come up with that. Thanks a bucket! -- tomas signature.asc

Re: Several versions of a modperl handler in a server instance

2006-01-26 Thread Tom Schindl
In mp1: - Apache::VINC http://perl.apache.org/docs/1.0/guide/modules.html#Apache__PerlVINC___Allows_Module_Versioning_in_Location_blocks_and_Virtual_Hosts In mp2: - use different VHost with different Inc-paths http://perl.apache.org/docs/2.0/user/config/config.html#C_PerlOptions_ Tom Tomas Ze

Several versions of a modperl handler in a server instance

2006-01-26 Thread Tomas Zerolo
Hi, list here's a general question which I'm sure has been addressed before. I've got a modperl2 handler within a module Foo. This module uses a whole hierarchy of helpers, like Foo::Bar, and so on (which live in a corresponding dir structure Foo/Bar and so on). Now I would like to have several

Re: ssl form post variables

2006-01-26 Thread JT Smith
Sorry, I meant we're using libapreq2. It's late. I'm tired. On Thu, 26 Jan 2006 09:20:37 +0100 Tom Schindl <[EMAIL PROTECTED]> wrote: Well when dealing with file-upload's i'd strongly recommend to use libapreq2 and it's perl-glue or of not possible CGI.pm. Avoid writing your own parameter pars

Re: ssl form post variables

2006-01-26 Thread Tom Schindl
Well when dealing with file-upload's i'd strongly recommend to use libapreq2 and it's perl-glue or of not possible CGI.pm. Avoid writing your own parameter parsing logic you'll fail in so many different cases! Tom JT Smith wrote: > Apache::RequestRec > > On Thu, 26 Jan 2006 08:51:51 +0100 > T