Horace Franklin Jr. wrote:
> Clear DayHello,
> 
> I use this line in my script: use MIME::Lite
> I received a file not found error.
> I have found a lite.PM file.  When I upload this
> file what permission should I use?

The file should be Lite.pm, not lite.PM. And it needs to be in a MIME
directory under one of the directories in @INC. The permissions on the file
need to allow read access by the process tyring to "use" it. But a "file not
found" error would be due to the file being in the wrong location or having
the wrong name (case-sensitive), or possbily in a directory that is not
readable by the process.

You can get away with just copying the file on this module, but that won't
work for many modules. Modules should be installed with the CPAN tool or
with the

   perl Makefile.PL
   make
   make test
   make install

sequence.

If you don't have a shell account with your ISP, can you get him to install
the module for you?

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to