in reply to "use lib" not adding i686-linux-thread-multi subdir
You have specified use lib in your handler, but the documentation says to put this pragma in your startup.pl. I think that may be your problem. Your @INC may be getting modified at runtime, not startup.
In the startup file directly alter the @INC. For exampleand load the startup file from the configuration file by:startup.pl ---------- use lib qw(/home/httpd/perl /home/httpd/mymodules); 1;PerlRequire /path/to/startup.pl
|
|---|