Hello again bdegan2,
No worries about the previous questions, I am curious to understand if they are related with the current OS or the LiuxOS 32 bit.
Provide us the following information:
1. Perl Version. (perl -v)
2. OS version e.g. LinuxOS 64, WindowsOS 32 or 64.
3. Net::SMTP installed version.
Regarding the I'm not the one doing the actual upgrade (don't have the root password ) so I will send your suggestion to see if he can run the install using the Perl debugger and let you know the results. I meant to execute your script on debugger and see where it gets stack. Is it successfully installed or not? See sample bellow:
#!/usr/bin/perl
use strict;
use warnings;
use feature 'say';
say "Begin Test";
say "End Test";
__END__
$ perl -d test.pl
Loading DB routines from perl5db.pl version 1.49_05
Editor support available.
Enter h or 'h h' for help, or 'man perldebug' for more help.
main::(test.pl:6): say "Begin Test";
DB<1> s
+
+
Begin Test
main::(test.pl:7): say "End Test";
DB<1>
Looking forward to your update.
Seeking for Perl wisdom...on the process of learning...not there...yet!
|