> -----Original Message-----
> From: Herrington, Jack [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 26, 2000 12:17 PM
> To: [EMAIL PROTECTED]
> Subject: RE: Apache::Request->new() problem
>
>
> >well, if you don't have that, then you likely don't have
> Apache::Request or
> >Apache::Cookie - they aren't part of the mod_perl distribution :)
> >you need libapreq, which can be found under the Apache tree on CPAN
>
> libapreq appears to come with Bundle::Apache, but I also downloaded it
> seperately and installed it directly.
oh, ok...
if running from Registry, try this:
#!/usr/bin/perl
use strict;
use Apache::Request;
my $apr = Apache::Request->new(shift);
if that fails, start checking the usual suspects:
libapreq was built, but not actually installed in perl's @INC
mod_perl wasn't built with EVERYTHING=1 (I'm not sure whether
libapreq needs PERL_TABLE_API=1 or not)
those ought to help some...
if that fails, send the exact script, OS, build options, actual error
messages, etc...
>
> My thinking is that the XS code isn't working with Perl 5.6.
I have it working with 5.6 on linux just fine...
> There are
> other XS based libraries that are working (like MD5), but
> this one refuses
> to work.
HTH
--Geoff