Re: Perl error codes and warnings

2013-05-29 Thread *Shaji Kalidasan*
o God. --- From: Warren James - jawarr To: '*Shaji Kalidasan*' ; timothy adigun <2teezp...@gmail.com>; Charles DeRykus Cc: Perl Beginners Sent: Wednesday, 29 May 2013 7:38 PM Subject: RE: Perl error codes and warnings Shaji - Upo

RE: Perl error codes and warnings

2013-05-29 Thread Warren James - jawarr
to:shajiin...@yahoo.com] Sent: Wednesday, May 29, 2013 2:34 AM To: timothy adigun; Charles DeRykus Cc: Perl Beginners Subject: Re: Perl error codes and warnings Thanks a bunch Timothy and Charles for guiding me to wonderful resources within the Perl system. use diagnostics qw/-verbose/; it slipped my

Re: Perl error codes and warnings

2013-05-29 Thread *Shaji Kalidasan*
m> To: *Shaji Kalidasan* Cc: Perl Beginners Sent: Wednesday, 29 May 2013 9:26 AM Subject: Re: Perl error codes and warnings Hi Shaji, On Wed, May 29, 2013 at 4:19 AM, *Shaji Kalidasan* wrote: Greetings, > > >Where can I get more information on Perl's most common er

Re: Perl error codes and warnings

2013-05-28 Thread timothy adigun
Hi Shaji, On Wed, May 29, 2013 at 4:19 AM, *Shaji Kalidasan* wrote: > Greetings, > > Where can I get more information on Perl's most common error codes? Is > there a single source (repository/resource) for such most frequently > encountered error codes? > > [code-1] > use strict; > use warnings;

Re: Perl error codes and warnings

2013-05-28 Thread Charles DeRykus
On 5/28/2013 8:19 PM, *Shaji Kalidasan* wrote: Greetings, Where can I get more information on Perl's most common error codes? Is there a single source (repository/resource) for such most frequently encountered error codes? [code-1] use strict; use warnings; [ ... ] The warnings are fairly

Re: Perl Error with spamassassin

2008-12-01 Thread Raymond Wan
Hi Meghanand, Meghanand Acharekar wrote: Thanks for your help Your trick for Spamassassin worked there was some prob in spamassassin rules I removed those lines and now its working fine. You're welcome; that is a Spamassassin problem and you might want to ask their mailing list about it

Re: Perl Error with spamassassin

2008-12-01 Thread Jeff Pang
> Message du 01/12/08 11:53 > De : "Meghanand Acharekar" > A : "beginners" > Copie à : > Objet : Re: Perl Error with spamassassin > > Hello Raymond > > Thanks for your help > Your trick for Spamassassin worked there was some prob in spamassassin

Re: Perl Error with spamassassin

2008-12-01 Thread Meghanand Acharekar
Hello Raymond Thanks for your help Your trick for Spamassassin worked there was some prob in spamassassin rules I removed those lines and now its working fine. But not able to install perl module 'Mail::IMAPClient', As far as I think this should be related with dependencies ( some modules are mis

Re: Perl Error with spamassassin

2008-12-01 Thread Raymond Wan
Hi Meghanand, (I appended to your subject as your original one was very vague.) Meghanand Acharekar wrote: While running following IMAP learn script (see attachment) I am getting following error message. config: invalid regexp for rule OEM_SPAM: /Reinstall OEM with different media???/i: N

Re: perl error...

2008-07-17 Thread George Georgalis
On Thu 17 Jul 2008 at 10:18:22 AM -0700, John W. Krahn wrote: > George Georgalis wrote: >> Okay perl idiot here... >> use: not found >> /usr/local/script/contrib/maildirsync.pl: 20: Syntax error: "(" unexpected >> >> (nb: "use: not found:") humm, well this is line 19-21 >> >> use File::Basename; >

Re: perl error...

2008-07-17 Thread John W. Krahn
George Georgalis wrote: Okay perl idiot here... use: not found /usr/local/script/contrib/maildirsync.pl: 20: Syntax error: "(" unexpected (nb: "use: not found:") humm, well this is line 19-21 use File::Basename; use File::Copy qw(copy move); use File::Path qw(mkpath); I do have a nice /usr/p

Re: perl error...

2008-07-17 Thread George Georgalis
On Thu 17 Jul 2008 at 12:56:41 PM -0400, George Georgalis wrote: >Okay perl idiot here... > >use: not found >/usr/local/script/contrib/maildirsync.pl: 20: Syntax error: "(" unexpected > >(nb: "use: not found:") humm, well this is line 19-21 > >use File::Basename; >use File::Copy qw(copy move); >us

Re: perl error in spamassassin

2008-02-03 Thread Chas. Owens
On Feb 3, 2008 5:24 AM, <[EMAIL PROTECTED]> wrote: > Hi, > I am running a Centos 4.6 box, with perl 5.8.8 and Plesk 8.3, > Spamassasin was running fine until i upgraded some perl modules, now > i get the following error when i try and start spamassassin > > > Can't locate object method "register

Re: Perl error

2007-04-26 Thread Ken Foskey
On Wed, 2007-04-25 at 10:20 -0500, Kevin Viel wrote: >Thanks. I have been using this program without problem for a while, > I'd like to say over a year, but I am not sure. > >So, could it be that somehow the environment path variable relating > to perl had been changed? Otherwise, I c

Re: Perl error

2007-04-25 Thread Kevin Viel
John W. Krahn wrote: The warnings pragma was introduced in Perl version 5.6 perldoc perl56delta If you are using Perl version 5.005_03 then you will have to use the -w switch instead like: #!/usr/bin/perl -w John, Thanks. I have been using this program without problem for a while, I'd

Re: Perl error

2007-04-24 Thread John W. Krahn
Kevin Viel wrote: > I obtained the following message: > Can't locate warnings.pm in @INC (@INC contains: > /usr/perl5/5.00503/i86pc-solaris /usr/perl5/5.00503 ^^^ > /usr/perl5/site_perl/5.005/i86pc-solaris /usr/perl5/site_perl/5.005 .) ^ >> /usr/perl5/5.

Re: Perl error

2007-04-24 Thread Kevin Viel
I obtained the following message: Can't locate warnings.pm in @INC (@INC contains: /usr/perl5/5.00503/i86pc-solaris /usr/perl5/5.00503 /usr/perl5/site_perl/5.005/i86pc-solaris /usr/perl5/site_perl/5.005 .) /usr/perl5/5.6.1/lib/warnings.pm f none 0444 root bin 14333 49307 1106351821 SUNWpl5u /u

Re: PERL error message - Useless use of a variable in void context

2005-03-03 Thread John W. Krahn
Danny Fang wrote: Hi, Hello, I've a script below which reads the contents of a text file which contains the output of the `ls -lR` in UNIX. Why?? Why not just use File::Find? This script reads the list of html files contained in the text file, and for every file it checks to see it contains some

Re: PERL error message - Useless use of a variable in void context

2005-03-03 Thread Peter Scott
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Danny Fang) writes: >--0-972884666-1109846115=:30240 >Content-Type: text/plain; charset=us-ascii > >Hi, > >I've a script below which reads the contents of a text file which contains the >output of the `ls -lR` in UNIX. This script reads the lis

Re: Perl error --> Global symbol requires...

2005-02-25 Thread JupiterHost.Net
Owen wrote: On Fri, 25 Feb 2005 15:55:21 -0700 "Bret Goodfellow" <[EMAIL PROTECTED]> wrote: # while1.pl use strict ; use warnings ; $i = 1; while ($i < 10) { print "I am at $i\n"; i++; } # while1.pl Global symbol "$i" requires explicit package name at Try removing the 'use strict;' statement. See w

Re: Perl error --> Global symbol requires...

2005-02-25 Thread John W. Krahn
Owen wrote: On Fri, 25 Feb 2005 15:55:21 -0700 "Bret Goodfellow" <[EMAIL PROTECTED]> wrote: # while1.pl use strict ; use warnings ; $i = 1; while ($i < 10) { print "I am at $i\n"; i++; } # while1.pl Global symbol "$i" requires explicit package name at Try removing the 'use strict;' statement. See w

Re: Perl error --> Global symbol requires...

2005-02-25 Thread Xiaofang Zhou
Hi, Bret You must tell perl what kinds of var the $i is, when 'use strict'. $i can be a lexical var or a global var. my $i = 1; # $i is a lexical var. our $i = 1; # $i is a global var, perl 5.6+ only. use vars qw($i); # also as global var, but can work under old perl 在 2005-02-25 15:55:00

Re: Perl error --> Global symbol requires...

2005-02-25 Thread Owen
On Fri, 25 Feb 2005 15:55:21 -0700 "Bret Goodfellow" <[EMAIL PROTECTED]> wrote: > # while1.pl > use strict ; > use warnings ; > > $i = 1; > > while ($i < 10) { > print "I am at $i\n"; > i++; > } > # while1.pl > > > > Global symbol "$i" requires explicit package name at Try removing t

Re: Perl error --> Global symbol requires...

2005-02-25 Thread John W. Krahn
Bret Goodfellow wrote: I'm getting the following error in my code. If I define $i as my $i then everything works fine. What's wrong? perldoc -q "When I tried to run my script, I got this message. What does it mean" # while1.pl use strict ; use warnings ; $i = 1; while ($i < 10) { print "I

Re: PERL Error when running MIME::Lite

2004-07-01 Thread Wiggins d Anconia
Please bottom post... > > I looked at perldoc CPAN for "5 as you stated below, and didn't find anything there. It seems like there are some information missing as to how I would install modules and use them without being root. Where you stated "by configuring the 'makepl_arg' setting in CPAN", I

Re: PERL Error when running MIME::Lite

2004-07-01 Thread jason corbett
I looked at perldoc CPAN for "5 as you stated below, and didn't find anything there. It seems like there are some information missing as to how I would install modules and use them without being root. Where you stated "by configuring the 'makepl_arg' setting in CPAN", I would like more informati

Re: PERL Error when running MIME::Lite

2004-07-01 Thread jason corbett
Thank you. That was a more clearer answer. Good day! Wiggins d Anconia <[EMAIL PROTECTED]> wrote: > jason corbett wrote: > > How can I install it when I don't have root rights to place it in the bin? > > First, please reply to the list. Second, either get the person who does have > root acces

Re: PERL Error when running MIME::Lite

2004-07-01 Thread Wiggins d Anconia
> jason corbett wrote: > > How can I install it when I don't have root rights to place it in the bin? > > First, please reply to the list. Second, either get the person who does have > root access to install the module or install it locally in your home dir and add > it to your @INC (someone els

Re: PERL Error when running MIME::Lite

2004-06-30 Thread Andrew Gaffney
jason corbett wrote: How can I install it when I don't have root rights to place it in the bin? First, please reply to the list. Second, either get the person who does have root access to install the module or install it locally in your home dir and add it to your @INC (someone else can tell you

Re: PERL Error when running MIME::Lite

2004-06-30 Thread Andrew Gaffney
jason corbett wrote: Cannot locate MIME/Lite.pm in @INC. @INC contains: /usr/local/perl156/lib/5.6.1/PA-RISC2... Any one know about this? You need to install the MIME::Lite module. -- Andrew Gaffney Network Administrator Skyline Aeronautics, LLC. 636-357-1548 -- To unsubscribe, e-mail: [EMAIL PRO

RE: perl error

2003-09-09 Thread Hanson, Rob
I have no hard answers, but here are some suggestions from my admin... I'd look to see which DBD connector he's trying to use. He's also using a multi-threaded perl which I believe is buggy under Solaris -- especially perl 5.6. I'd try re-compiling perl 5.8 and check that the DBD modules are ins