earthboundmisfit has asked for the wisdom of the Perl Monks concerning the following question:
I cannot get a module to load but only when it's run through IIS. Running the script on the command line, it loads just fine. When I hit the same exact script in a web browser it complains that it can't find the .pm
Again, on the command line, it prints a mime header and the text "we're good," in the browser the error is#! Perl -w use strict; use CGI::Carp 'fatalsToBrowser'; use CGI; use DBI; use CCMckLib3_2; my $q = CGI->new; print $q->header; print "we're good";
I checked the directories of @INC. CCMckLib3_2.pm is right where it ought to be.
I've checked the settings in IIS, re-installed the whole thing, and dumped every caching device I can think of. I'm out of ideas.
Is there anything special I need to do to install a module under this latest build?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Odd behavior after upgrade of AS Perl
by LD2 (Curate) on Aug 11, 2001 at 04:35 UTC | |
by earthboundmisfit (Chaplain) on Aug 11, 2001 at 05:57 UTC |