yaml + bindings to other languages

2006-05-05 Thread Jonathan Vanasco
this may make some of you cringe, so i apologize i've moved over a bunch of image processing and file uploading from a mod_perl project to the turbogears python framework - i seriously hate the speed and quality of GD / ImageMagick, and python's imaging library was better suited to my needs

Re: PerlAccessHandler Leaks memory when using Soap::Lite to make a web service call (win32)

2006-05-05 Thread Philip M. Gollucci
[EMAIL PROTECTED] wrote: I've been trying to solve this problem for a week now with no luck I have an apache 2.x web server running mod_perl. I'm trying to write a perlaccesshandler that has to make a web service call to a .net web service. The module works fine but each hit cause a leak of a

PerlAccessHandler Leaks memory when using Soap::Lite to make a web service call (win32)

2006-05-05 Thread damion.fusco
Title: PerlAccessHandler Leaks memory when using Soap::Lite to make a web service call (win32) I've been trying to solve this problem for a week now with no luck I have an apache 2.x web server running mod_perl. I'm trying to write a perlaccesshandler that has to make a web service call

Re: Reinstall gets Can't locate Apache.pm

2006-05-05 Thread Thomas Schindl
Why do you have set MOD_PERL in the environment when running on the command line? Whether it's Apache or Apache2 doesn't matter it doesn't make sense to run modules which rely on apache-API from the commandline does it? Tom > --- Ursprüngliche Nachricht --- > Von: Thomas Hilbig <[EMAIL PROTECTED]

Re: Reinstall gets Can't locate Apache.pm

2006-05-05 Thread Thomas Hilbig
--- Tyler MacDonald <[EMAIL PROTECTED]> wrote: > Thomas Hilbig <[EMAIL PROTECTED]> wrote: > > I was getting the error even from running perl > > interactively > > linux>perl > > use CGI ; > > Can't locate Apache.pm in @INC > > > > I think the problem may be that I am simply > missing > > the MO

Re: Reinstall gets Can't locate Apache.pm

2006-05-05 Thread Thomas Hilbig
> > I did follow the instructions in the link (some > months > > ago) when migrating from mp 0.99 to mp2, and lived > > with the command line problem. However, as I am > > trying to reinstall everything (perl included) I > don't > > know why am seeing this problem at all. Any > > suggestions? >

Re: Reinstall gets Can't locate Apache.pm

2006-05-05 Thread Tyler MacDonald
Thomas Hilbig <[EMAIL PROTECTED]> wrote: > > Ack! Before you drive yourself nuts with this, read > > this page: > > > > http://perl.apache.org/docs/2.0/rename.html > I shouldn't have to clean up the perl tree of old > Apache*.pm stuff as I blew away the whole tree by > renaming it. Now, i

Re: Reinstall gets Can't locate Apache.pm

2006-05-05 Thread Thomas Hilbig
--- Tyler MacDonald <[EMAIL PROTECTED]> wrote: > Thomas Hilbig <[EMAIL PROTECTED]> wrote: > > I tried to reinstall CGI, Bundle::Apache2, but > still > > got the error. Finally, I renamed the > /usr/lib/perl5 > > directory and am trying to reinstall Perl 5.8.8 > from > > source tar. However, in

Re: Reinstall gets Can't locate Apache.pm

2006-05-05 Thread Tyler MacDonald
Thomas Hilbig <[EMAIL PROTECTED]> wrote: > I tried to reinstall CGI, Bundle::Apache2, but still > got the error. Finally, I renamed the /usr/lib/perl5 > directory and am trying to reinstall Perl 5.8.8 from > source tar. However, in the "make test" section I am > still getting the same errors on a

Reinstall gets Can't locate Apache.pm

2006-05-05 Thread Thomas Hilbig
I had an old problem with a backup server that I am trying to fix while updating perl, Apache, and mod_perl2. My CGI scripts worked under Apache/MP2, however, everytime I tried to run them from in a shell I got "Can't locate Apache.pm". This was even though I had installed Bundle::Apache2 and CG

Re: modperl Apache keeps freezing up

2006-05-05 Thread Philip Mak
On Fri, May 05, 2006 at 12:06:24AM -0700, Philip M. Gollucci wrote: > >If I kill and restart the Apache then it's fine but it'll freeze up in > >a few days again. I'm perplexed. > Start the server in -X or wait for it to happen and > attach strace to the process. If that doesn't help you could alw

Re: mod_proxy_add_forward

2006-05-05 Thread Issac Goldstand
In Apache 2, it's built in to mod_proxy. In Apache 1 (as of a couple of years ago, at least) it wasn't - that's why mod_proxy_add_forward was originally written :) Issac Michael Schout wrote: > David Romero wrote: >> Hi >> I need the client ip on a backend server. > > Plain old mod_proxy will

Re: modperl Apache keeps freezing up

2006-05-05 Thread Philip M. Gollucci
If I kill and restart the Apache then it's fine but it'll freeze up in a few days again. I'm perplexed. Start the server in -X or wait for it to happen and attach strace to the process. If that doesn't help you could always attach gdb to the process. HTH -- -