Thanks Jonathan, I think that helped get me closer.
I removed the Request.so (don't know where it came from if it shouldn't have
been there), now I get " Can't locate loadable object for module APR::Request"
which is coming from "use APR::Request ();" in my startup.pl
Am i just missing something stupid? APR::Request should be there by way of
installing libapreq2, shouldn't it?
Thanks
-Chris
> AFAIK , libapreq2 will only install
>
> mod_apreq2.a
> mod_apreq2.la
> mod_apreq2.so
>
> in the modules dir of apache2 that its configured against ( on my
> systems, thats /usr/local/apache2 ) , and the perl docs/libs .
> there shoudln't ever be a physical Request.so file
>
> That error looks like your code is creating an APR::Request object,
> but you haven't had 'use APR::Request' in your code yet. that kind
> of error tends to create messages like that.
>
> I'd try just tossing in a use line before that error gets thrown, and
> see if it fixes things.