On 11-02-14 11:10 AM, Mike Blezien wrote:
Invalid offset:
And that's it. Normally it will indicate the line#, date, detailed error, etc.,
like in the apache error_log file. but this is all it shows. This is a cron
script also.
"Invalid offset" is not a Perl error message. Try scanning your script
for the phrase.
To list all error messages:
#!/usr/bin/perl
use strict;
use warnings;
for my $i ( 0 .. 256 ){
$! = $i;
printf "%4d: %s\n", 0+$!, "$!";
}
__END__
--
Just my 0.00000002 million dollars worth,
Shawn
Confusion is the first step of understanding.
Programming is as much about organization and communication
as it is about coding.
The secret to great software: Fail early & often.
Eliminate software piracy: use only FLOSS.
--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/