Re: missing .al files with apache/mod_perl

2002-06-27 Thread Ged Haywood

Hi there,

On Wed, 26 Jun 2002, Perrin Harkins wrote:

 Furthermore, this file doesn't exist in my filesystem.  How is it possible
 that (1) the module works without this apparently required file at the
 command line but (2) doesn't work with apache/mod_perl ?
 
 
 How is it possible?  Two ways: you could be wrong about the existence of 
 the file, or the situtation that requires the file might only arise when 
 you use it with mod_perl.  I'd suggest you start debugging it by looking 
 at the things that are different when running it from mod_perl: the 
 user, environment variables, working directory, ways that you call it, 
 etc.  One of those things is probably responsible.

'Perl -V' would tell us what's in INC amongst other things...

73,
Ged.




missing .al files with apache/mod_perl

2002-06-26 Thread Allen Day

Hi,

I asked about this before, but didn't get a response, so here we go
again...

I'm able to use MPEG::LibMPEG3 in a command line perl script, but if I try
to use it under mod_perl, I get an error:

[error] Can't locate auto/MPEG/LibMPEG3/dimensions.al in INC ...

Furthermore, this file doesn't exist in my filesystem.  How is it possible
that (1) the module works without this apparently required file at the
command line but (2) doesn't work with apache/mod_perl ?

-Allen




Re: missing .al files with apache/mod_perl

2002-06-26 Thread Perrin Harkins

Allen Day wrote:

Furthermore, this file doesn't exist in my filesystem.  How is it possible
that (1) the module works without this apparently required file at the
command line but (2) doesn't work with apache/mod_perl ?


How is it possible?  Two ways: you could be wrong about the existence of 
the file, or the situtation that requires the file might only arise when 
you use it with mod_perl.  I'd suggest you start debugging it by looking 
at the things that are different when running it from mod_perl: the 
user, environment variables, working directory, ways that you call it, 
etc.  One of those things is probably responsible.

- Perrin