perl error

2003-09-08 Thread Sachin Mathur
Hi , Please let me know if anyone has a clue about this one. error on running a perl script ld.so.1: perl: fatal: relocation error: file /opt/perl/lib/site_perl/5.6.

perl error...

2008-07-17 Thread George Georgalis
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/pkg/lib/perl5/5.8.0/File/Co

Perl Error

2008-11-30 Thread Meghanand Acharekar
Hi, 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: Nested quantifiers in regex; marked by <-- HERE in > m/(?i)Reinstall OEM with different media??? <-- HERE / >

RE: perl error

2003-09-09 Thread Hanson, Rob
the DBD modules are installed correctly. Rob -Original Message- From: Sachin Mathur [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 09, 2003 1:10 AM To: [EMAIL PROTECTED] Subject: perl error Hi , Please let me know if anyone has a clue about this one. error on r

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...

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 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

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

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-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-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

Perl error with Oracle

2002-10-31 Thread Jerry Preston
Hi! I just setup a new server with solaris 8 and installed perl5.6.1 and all seems to be working great except that I get the following error: DBD::Oracle initialisation failed: Can't locate auto/DBD/Oracle/ORA_OCI.al in @INC (@INC contains: /export/home/kthmgr/lib/perl5/site_perl/5.6.0/sun4-solar

Netscape or Perl error?

2002-02-21 Thread Daniel Falkenberg
Hi All, I am just testing my Perl CGI script on Netscape browser at the moment and I am getting a weird error occur. I can execute my script fine but when I go to use a link in the script such as... http://mydomain.com/cgi-bin/script?words=test&action=check_data In the URL bar of Netscape I ge

perl error in spamassassin

2008-02-03 Thread totalmanwhore
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_domain" via package "IO::Socket::INET" at /usr/lib/perl5/5.8.8/

Net::SSH::Perl error

2005-03-29 Thread lohit
Hi, i have installed openssh for windows and am able to connect using ssh client. Now, while trying out Net::SSH::Perl module i get an error at my $sshh= Net::SSH::Perl->new($host); Can't map service name 'ssh' to port number. this is on windows OS and i have added these entires to \etc\service

Perl error --> Global symbol requires...

2005-02-25 Thread Bret Goodfellow
I'm getting the following error in my code. If I define $i as my $i then everything works fine. What's wrong? # 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 C:\BegPerl\wh

Mini perl error during build

2003-07-14 Thread Colin
I'm building perl 5.8, and it appears to build OK, except that there is an "Error Code 1 (ignored)" as shown below: LD_LIBRARY_PATH=my_perl_build_dir ./miniperl -w -llib -MExporter -e '' || make minitest *** Error code 1 (ignored) rm -f lib/re.pm cat ext/re/re.pm > lib/re.pm LD_LIBRARY_PATH=my_pe

Re: Netscape or Perl error?

2002-02-21 Thread Dave Benware
Daniel Falkenberg wrote: > > Hi All, > > I am just testing my Perl CGI script on Netscape browser at the moment > and I am getting a weird error occur. I can execute my script fine but > when I go to use a link in the script such as... > > http://mydomain.com/cgi-bin/script?words=test&action=c

RE: Netscape or Perl error?

2002-02-21 Thread Daniel Falkenberg
t least my script is *finally* cross platform :). Thx, Dan -Original Message- From: Dave Benware [mailto:[EMAIL PROTECTED]] Sent: Friday, 22 February 2002 4:22 PM To: Beginners perl Subject: Re: Netscape or Perl error? Daniel Falkenberg wrote: > > Hi All, > > I am ju

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 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 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 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 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: Net::SSH::Perl error

2005-03-29 Thread Felix Geerinckx
On 29/03/2005, Lohit wrote: > i have installed openssh for windows and am able to connect using ssh > client. Now, while trying out Net::SSH::Perl module i get an error at > > my $sshh= Net::SSH::Perl->new($host); > > Can't map service name 'ssh' to port number. > What happens if you specify t

Perl error codes and warnings

2013-05-28 Thread *Shaji Kalidasan*
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; my @names = qw/bat, ball, %&!*, king, (^@), eagle, zebra/; foreach (@names) {     p

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 --> 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 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 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 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

Browser-specific perl error (taint mode)

2004-03-08 Thread Erik Rieselbach
Hi, Can anyone explain to me why I would get a perl error in one web browser but not in any others? All I¹m doing is taking an email address from a form, feeding it to a validation sub that untaints it, then using it with the ­f option to sendmail. It works fine in Mozilla browsers on both Mac

PERL Error when running MIME::Lite

2004-06-30 Thread jason corbett
Cannot locate MIME/Lite.pm in @INC. @INC contains: /usr/local/perl156/lib/5.6.1/PA-RISC2... Any one know about this? Thanks, JC

perl error - please help I'm lost

2004-01-10 Thread no_spam
I wanted to install a couple of modules but I have an error which appears to be stopping me... ## later... #LANG=en_GB #export # perl -MCPAN -e shell cpan> install Pod::Usage CPAN: Storable loaded ok Going to read /root/.cpan/Metadata Database was generated on Fri, 09 Jan 2004 17:52:34 GMT R

Need help with Perl error Please

2002-02-21 Thread Michael Eggleton
Hi All, I have a problem with the Perl format command. If I use the '<' for Justify left. I get the error message: Missing right curly or square braket. So this code below does not work: format STDOUT = ZIPPKG: @<<< $zippkg

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 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-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-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*
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: Browser-specific perl error (taint mode)

2004-03-08 Thread WC -Sx- Jones
Erik Rieselbach wrote: ³Insecure dependency in piped open while running with -T switch² at the line where I open a pipe to sendmail. This is what your server logs say or what is displayed in the browser window? You sure it isn't originating from sendmail? The -t option: sendmail -t Ex

Re: Browser-specific perl error (taint mode)

2004-03-08 Thread R. Joseph Newton
Erik Rieselbach wrote: > Hi, > > Can anyone explain to me why I would get a perl error in one web browser but > not in any others? This depends on on alot of factors, few of which you are sharing.Generally, perl errors should not come through to the browser. IIS does pass error mess

Re: Browser-specific perl error (taint mode)

2004-03-11 Thread Erik Rieselbach
> WC -Sx- Jones wrote: > >> ³Insecure dependency in piped open while running with -T switch² at the line >> where I open a pipe to sendmail. > > This is what your server logs say or what is displayed in the browser > window? It is displayed in the browser window, thanks to CGI::Carp qw(fatalsToB

Re: Browser-specific perl error (taint mode)

2004-03-11 Thread Erik Rieselbach
> "R. Joseph Newton" wrote: > >> Can anyone explain to me why I would get a perl error in one web browser but >> not in any others? > > This depends on on alot of factors, few of which you are sharing. Generally, > perl errors should not come through to the

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 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-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-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 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 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: Need help with Perl error Please

2002-02-21 Thread Michael Kelly
On 2/21/02 10:00 PM, Michael Eggleton <[EMAIL PROTECTED]> wrote: > Hi All, > > I have a problem with the Perl format command. > > If I use the '<' for Justify left. I get the error message: Missing > right curly or square braket. You need to terminate formats with '.' (a single period), not '.

Re: Need help with Perl error Please

2002-02-21 Thread Michael Eggleton
t;[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Date: Thu, 21 Feb 2002 22:09:34 -0800 Subject: Re: Need help with Perl error Please > On 2/21/02 10:00 PM, Michael Eggleton <[EMAIL PROTECTED]> > wrote: > > > Hi All, > > > > I have a problem with the Perl format c

Re: Need help with Perl error Please

2002-02-21 Thread Jeff 'japhy' Pinyan
On Feb 21, Michael Kelly said: >On 2/21/02 10:00 PM, Michael Eggleton <[EMAIL PROTECTED]> wrote: > >> If I use the '<' for Justify left. I get the error message: Missing >> right curly or square braket. > >You need to terminate formats with '.' (a single period), not '..' > >That should fix it,

Re: Need help with Perl error Please

2002-02-21 Thread Michael Kelly
On 2/21/02 10:15 PM, Jeff 'japhy' Pinyan <[EMAIL PROTECTED]> wrote: > On Feb 21, Michael Kelly said: > >> On 2/21/02 10:00 PM, Michael Eggleton <[EMAIL PROTECTED]> wrote: >> >>> If I use the '<' for Justify left. I get the error message: Missing >>> right curly or square braket. >> >> You need

Perl error trapping help, for example DBI

2010-02-10 Thread newbie01 perl
Hi all, Just want to know if there is an alternative to these error "trapping" that am using for the following code: #!/usr/bin/perl use DBI; $dbh = DBI->connect('dbi:Oracle:host=localhost;sid=test1;port=1521', 'test1_user', 'test1_password'); if ( defined($dbh) ) {# Checking for a succ

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

2005-03-03 Thread Danny Fang
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 list of html files contained in the text file, and for every file it checks to see it contains some specified HTML tags or not. If it does not, this script

forcing stack backtrace in the case of unhandled exception/Perl error

2004-04-26 Thread David Garamond
I've [re]discovered the wonderful world of Carp. I've now peppered most of my scripts with 'use Carp qw(verbose);'. However, whenever things go wrong (like my program calls an undefined subroutine, or I tried to modify a constant), my program dies without the stack backtrace. Any idea how I can

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 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: forcing stack backtrace in the case of unhandled exception/Perl error

2004-04-26 Thread Randy W. Sims
On 4/26/2004 1:02 PM, David Garamond wrote: I've [re]discovered the wonderful world of Carp. I've now peppered most of my scripts with 'use Carp qw(verbose);'. However, whenever things go wrong (like my program calls an undefined subroutine, or I tried to modify a constant), my program dies wit

Re: forcing stack backtrace in the case of unhandled exception/Perl error

2004-04-26 Thread David Garamond
Randy W. Sims wrote: On 4/26/2004 1:02 PM, David Garamond wrote: I've [re]discovered the wonderful world of Carp. I've now peppered most of my scripts with 'use Carp qw(verbose);'. However, whenever things go wrong (like my program calls an undefined subroutine, or I tried to modify a constant)