Re: Help with "install_driver(Oracle) failed" error message

2019-03-12 Thread Uri Guttman
On 3/12/19 11:59 AM, Frank K. wrote: Greeting, In the infinite wisdom our company, without warning completely uninstalled Active Perl on all of our Windows servers (I believe it was v5.8).. They claimed it was a security risk, but I suspect new licensing fees were the main incentive.. Regar

Help with "install_driver(Oracle) failed" error message

2019-03-12 Thread Frank K.
Greeting, In the infinite wisdom our company, without warning completely uninstalled Active Perl on all of our Windows servers (I believe it was v5.8).. They claimed it was a security risk, but I suspect new licensing fees were the main incentive.. Regardless, I installed Strawberry Perl, 64 bit

Re: Error Message on Perlbrew Install

2012-06-18 Thread Kristin Johnson
t; > I am getting the error message: "can't locate Pod/Usage.pm > > Usually means you just don't have that module ("Pod::Usage") installed. > You want to to tell us what platform/OS you're on (eg windows XP or 7 and > ActiveState or Strawberry or Ubun

Re: Error Message on Perlbrew Install

2012-06-16 Thread Andy Bach
> I am getting the error message: "can't locate Pod/Usage.pm Usually means you just don't have that module ("Pod::Usage") installed. You want to to tell us what platform/OS you're on (eg windows XP or 7 and ActiveState or Strawberry or Ubuntu and ver. 5.12) b

Error Message on Perlbrew Install

2012-06-16 Thread MallHair
Hello, I don't know if I should ask this here. I'm having trouble installing Perlbrew. I am getting the error message: "can't locate Pod/Usage.pm in @INC (@INC contains: CODE(0xa031ea8) /usr/lib/perl5/5.8.8/msys /usr/ lib/perl5/5.8.8 /usr/lib/perl5/site_perl/5.8.8/msys /usr/

Re: error message "Use of uninitialized value in concatenation (.) or string at

2012-04-12 Thread Shlomi Fish
Hello adit, On Wed, 11 Apr 2012 20:03:28 -0700 (PDT) adit edogawa wrote: > hi, > please help me ... > I have a perl script as follows: > > #! / Usr / bin / perl-w > # Use module > use strict; > use DBI; > Seems like your E-mail user-agent has seriously mangled your Perl code thinking it is fr

error message "Use of uninitialized value in concatenation (.) or string at

2012-04-12 Thread adit edogawa
', '$ Address', '$ Province', '$ Kode_pos', "$ MSISDN ', '$ Email',

Re: Error message: Use of uninitialized value in concatenation (.) or string

2012-02-13 Thread Ken Slater
er loop above. Ken >                print $MAP "$up_ac\t$kegg_map{$up_ac}\n"; #-- line 441. >            } >            close $MAP; >        } > > I get the following error message: > Use of uninitialized value in concatenation (.) or string at pipeline.pl

Error message: Use of uninitialized value in concatenation (.) or string

2012-02-13 Thread venkates
27;>', $kegg_tax_map_path or croak "Failed to open for writing $kegg_tax_map_path: $!"; print $MAP "$up_ac\t$kegg_map{$up_ac}\n"; #-- line 441. } close $MAP; } I get the following error message: Use of uninitial

Re: supressing error message Use of uninitialized value in concatenation....

2012-01-09 Thread Rajeev Prasad
Thank you, the following worked: { no warnings qw(uninitialized); ... } - Original Message - From: Jim Gibson To: perl list Cc: Sent: Monday, January 9, 2012 1:14 PM Subject: Re: supressing error message Use of uninitialized value in concatenation On 1/9/12 Mon  Jan 9, 2012

Re: supressing error message Use of uninitialized value in concatenation....

2012-01-09 Thread Jim Gibson
On 1/9/12 Mon Jan 9, 2012 10:53 AM, "Rajeev Prasad" scribbled: > Hello, > > I have a lot of fields being concatenated to form a string and sometimes the > values are empty, so i am getting this error: > > Use of uninitialized value in concatenation (.) or string at ./script.pl line > 144, <$I

supressing error message Use of uninitialized value in concatenation....

2012-01-09 Thread Rajeev Prasad
Hello, I have a lot of fields being concatenated to form a string and sometimes the values are empty, so i am getting this error: Use of uninitialized value in concatenation (.) or string at ./script.pl line 144, <$IN_FH> line 1. how can i suppress this? my logic flow: $string1 = "a,b,c,d,e

Re: Is unlink() supposed to provide an error message on failure?

2009-11-23 Thread C.DeRykus
On Nov 20, 6:04 am, pe...@psdt.com (Peter Scott) wrote: > On Thu, 19 Nov 2009 18:44:51 -0600, brian d foy wrote: > > I've fixed this in commit 40ea6f68 to perl blead. The entry now reads: > [...] > > On error, C will not tell you which files it could not remove. > > If you care about the files you

Re: Is unlink() supposed to provide an error message on failure?

2009-11-20 Thread Peter Scott
On Thu, 19 Nov 2009 18:44:51 -0600, brian d foy wrote: > I've fixed this in commit 40ea6f68 to perl blead. The entry now reads: [...] > On error, C will not tell you which files it could not remove. > If you care about the files you could not remove, try them one at a > time: Presumably if you car

Re: Is unlink() supposed to provide an error message on failure?

2009-11-20 Thread C.DeRykus
On Nov 18, 6:34 pm, jwkr...@shaw.ca (John W. Krahn) wrote: > David Christensen wrote: > > beginners: > > Hello, > > > Is unlink() supposed to provide an error message on failure? > > Yes.  All Perl functions that interact with the underlying system will > set $

RE: Is unlink() supposed to provide an error message on failure?

2009-11-19 Thread David Christensen
I wrote: > Is unlink() supposed to provide an error message on failure? The > documentation does not say so: brian d foy wrote: > I've fixed this in commit 40ea6f68 to perl blead. >On failure, it returns false and sets C<$!> (errno): Thank you. :-) That content

Re: Is unlink() supposed to provide an error message on failure?

2009-11-19 Thread brian d foy
In article <1893d21769b943eea293dcc1e9429...@p43400e>, David Christensen wrote: > Is unlink() supposed to provide an error message on failure? The > documentation does not say so: I've fixed this in commit 40ea6f68 to perl blead. The entry now reads: =item unlink LIST X X X

Re: Is unlink() supposed to provide an error message on failure?

2009-11-18 Thread Jeff Pang
So write the code like: unlink $file or die $!; This will throw up an error message and die. On Nov 19, 2009, David Christensen wrote: beginners: Is unlink() supposed to provide an error message on failure? The documentation does not say so: http://www.perl.com/doc/manual/html/pod

Re: Is unlink() supposed to provide an error message on failure?

2009-11-18 Thread John W. Krahn
David Christensen wrote: beginners: Hello, Is unlink() supposed to provide an error message on failure? Yes. All Perl functions that interact with the underlying system will set $! on failure. ($! is the same as errno in C.) man 3 errno man 2 unlink John -- The programmer is

Is unlink() supposed to provide an error message on failure?

2009-11-18 Thread David Christensen
beginners: Is unlink() supposed to provide an error message on failure? The documentation does not say so: http://www.perl.com/doc/manual/html/pod/perlfunc/unlink.html Testing indicate that unlink() sets $! on failure: 2009-11-18 11:42:40 dpchr...@vmlamp ~ $ cat foo #! /usr

Re: How to catch the DBI module error message

2009-11-09 Thread Parag Kalra
le: > > > > DBD::ODBC::st execute failed: [Oracle][ODBC][Ora]ORA-00942: table or view > > does not exist > > (SQL-42S02) at Test.pl line 67 > > > > The error message is well justified as the table doesn't exist. > > > > However I just wanted to

AW: How to catch the DBI module error message

2009-11-09 Thread Thomas Bätzler
Parag Kalra asked: [DBI] > However I just wanted to know if there is a way to catch this error > message through some standard DBI variable so that I can print it in a log > file You can use the errstr() class and instance methods to access the last error message. In order to stop

Re: How to catch the DBI module error message

2009-11-09 Thread Dermot
iew > does not exist >  (SQL-42S02) at Test.pl line 67 > > The error message is well justified as the table doesn't exist. > > However I just wanted to know if there is a way to catch this error message > through some standard DBI variable so that I can print it in a log file

How to catch the DBI module error message

2009-11-09 Thread Parag Kalra
le or view does not exist (SQL-42S02) at Test.pl line 67 The error message is well justified as the table doesn't exist. However I just wanted to know if there is a way to catch this error message through some standard DBI variable so that I can print it in a log file as well. Cheers, Parag

Re: How to catch error message instead of printing to stderr for rmtree

2008-09-25 Thread Yue Chen
t to use rmtree to delete a dir and use variables to catch the >> error message. However, when i am about to delete a dir that does not >> belong to me, it still print the error message to stderr. Does anyone >> have clue? >> >> my script: test.pl >> >> use

Re: How to catch error message instead of printing to stderr for rmtree

2008-09-25 Thread Li, Jialin
On Fri, Sep 26, 2008 at 12:17 AM, Yue Chen <[EMAIL PROTECTED]> wrote: > Hi > > I want to use rmtree to delete a dir and use variables to catch the > error message. However, when i am about to delete a dir that does not > belong to me, it still print the error message to stder

How to catch error message instead of printing to stderr for rmtree

2008-09-25 Thread Yue Chen
Hi I want to use rmtree to delete a dir and use variables to catch the error message. However, when i am about to delete a dir that does not belong to me, it still print the error message to stderr. Does anyone have clue? my script: test.pl use File::Path; File::Path::rmtree( '/root

RE: About the error message in Perl : "Missing right curly braces"

2008-08-22 Thread Stewart Anderson
> -Original Message- > From: Peter Scott [mailto:[EMAIL PROTECTED] > Sent: 21 August 2008 20:14 > To: beginners@perl.org; "Amit Saxena" > Subject: Re: About the error message in Perl : "Missing right curly > braces" > > On Thu, 21 Aug 2008 17:4

Re: About the error message in Perl : "Missing right curly braces"

2008-08-21 Thread Dr.Ruud
"Jenda Krynicky" schreef: > Dr.Ruud: >> Amit Saxena: >>> I want to know the best approach that should be used to find the >>> extra curly brace when any Perl program aborts with the error >>> message as "Missing right curly braces". >>

Re: About the error message in Perl : "Missing right curly braces"

2008-08-21 Thread Peter Scott
On Thu, 21 Aug 2008 17:48:00 +0530, Amit Saxena wrote: >> Load the code into Emacs. Ensure cperl-mode is enabled. Mark the whole >> buffer (control-space at the beginning, then move point to the end). >> Execute M-x indent-region, Look to see where the indentation goes "off". >> > How can we ena

Re: About the error message in Perl : "Missing right curly braces"

2008-08-21 Thread Jenda Krynicky
From: "Dr.Ruud" <[EMAIL PROTECTED]> > "Amit Saxena" schreef: > > > I want to know the best approach that should be used to find the > > extra curly brace when any Perl program aborts with the error message > > as "Missing right curly braces&q

Re: About the error message in Perl : "Missing right curly braces"

2008-08-21 Thread Mr. Shawn H. Corey
On Thu, 2008-08-21 at 17:46 +0530, Amit Saxena wrote: > I am using "vi" on Solaris. > > I can also use "%" in command mode for "vi" to match parenthesis and curly > braces. However this approach results in lots of matching open brace against > the close one etc when majority of the lines in the co

Re: About the error message in Perl : "Missing right curly braces"

2008-08-21 Thread Dr.Ruud
"Amit Saxena" schreef: > I am using "vi" on Solaris. > > I can also use "%" in command mode for "vi" to match parenthesis and > curly braces. However this approach results in lots of matching open > brace against the close one etc when majority of the lines in the > code contains curly braces (thr

Re: About the error message in Perl : "Missing right curly braces"

2008-08-21 Thread Amit Saxena
On Thu, Aug 21, 2008 at 5:23 PM, Peter Scott <[EMAIL PROTECTED]> wrote: > On Thu, 21 Aug 2008 14:31:07 +0530, Amit Saxena wrote: > > Assuming you are getting the buggy code for the first time and you need > to > > track which line contains that curly brace which is causing that problem, > > what y

Re: About the error message in Perl : "Missing right curly braces"

2008-08-21 Thread Amit Saxena
On Thu, Aug 21, 2008 at 2:44 PM, Stewart Anderson < [EMAIL PROTECTED]> wrote: >-- > > *From:* Amit Saxena [mailto:[EMAIL PROTECTED] > *Sent:* 21 August 2008 10:01 > *To:* Stewart Anderson > *Cc:* Perl > *Subject:* Re: About the error

Re: About the error message in Perl : "Missing right curly braces"

2008-08-21 Thread Peter Scott
On Thu, 21 Aug 2008 14:31:07 +0530, Amit Saxena wrote: > Assuming you are getting the buggy code for the first time and you need to > track which line contains that curly brace which is causing that problem, > what your modified approach be ? Load the code into Emacs. Ensure cperl-mode is enabled

Re: About the error message in Perl : "Missing right curly braces"

2008-08-21 Thread Dr.Ruud
"Amit Saxena" schreef: > I want to know the best approach that should be used to find the > extra curly brace when any Perl program aborts with the error message > as "Missing right curly braces". Many editors have a function to bring your cursor from the

RE: About the error message in Perl : "Missing right curly braces"

2008-08-21 Thread Stewart Anderson
_ From: Amit Saxena [mailto:[EMAIL PROTECTED] Sent: 21 August 2008 10:01 To: Stewart Anderson Cc: Perl Subject: Re: About the error message in Perl : "Missing right curly braces" On Thu, Aug 21, 2008 at 2:23 PM, Stewart Anderson <[EMAIL PROTECTED]> wrote: > --

Re: About the error message in Perl : "Missing right curly braces"

2008-08-21 Thread Amit Saxena
On Thu, Aug 21, 2008 at 2:23 PM, Stewart Anderson < [EMAIL PROTECTED]> wrote: > > > -Original Message- > > From: Amit Saxena [mailto:[EMAIL PROTECTED] > > Sent: 21 August 2008 08:56 > > To: Perl > > Cc: Amit Saxena > > Subject: About the

RE: About the error message in Perl : "Missing right curly braces"

2008-08-21 Thread Stewart Anderson
> -Original Message- > From: Amit Saxena [mailto:[EMAIL PROTECTED] > Sent: 21 August 2008 08:56 > To: Perl > Cc: Amit Saxena > Subject: About the error message in Perl : "Missing right curly braces" > > Hi all, > > I want to know the best approa

About the error message in Perl : "Missing right curly braces"

2008-08-21 Thread Amit Saxena
Hi all, I want to know the best approach that should be used to find the extra curly brace when any Perl program aborts with the error message as "Missing right curly braces". Though the error message is simple enough to suggest that there is an extra curly brace in the Perl progr

Re: error message

2008-04-20 Thread John W. Krahn
Levente Kovacs wrote: On Sun, 20 Apr 2008 14:06:56 -0700 "John W. Krahn" <[EMAIL PROTECTED]> wrote: Levente Kovacs wrote: On Sun, 20 Apr 2008 22:09:21 +0200 Xavier Noria <[EMAIL PROTECTED]> wrote: On Apr 20, 2008, at 21:57 , Levente Kovacs wrote: Can anyone tell me w

Re: error message

2008-04-20 Thread Levente Kovacs
On Sun, 20 Apr 2008 14:06:56 -0700 "John W. Krahn" <[EMAIL PROTECTED]> wrote: > Levente Kovacs wrote: > > > > On Sun, 20 Apr 2008 22:09:21 +0200 > > Xavier Noria <[EMAIL PROTECTED]> wrote: > > > >> On Apr 20, 2008, at 21:57 , Levente K

Re: error message

2008-04-20 Thread Levente Kovacs
On Sun, 20 Apr 2008 22:57:46 +0200 Xavier Noria <[EMAIL PROTECTED]> wrote: > On Apr 20, 2008, at 22:45 , Levente Kovacs wrote: > > > Thank you very much for your answer. I am sitting here for a day > > seeng what > > could be wrong, but I can't find it. I post a link to my code here. > > Than

Re: error message

2008-04-20 Thread John W. Krahn
Levente Kovacs wrote: On Sun, 20 Apr 2008 22:09:21 +0200 Xavier Noria <[EMAIL PROTECTED]> wrote: On Apr 20, 2008, at 21:57 , Levente Kovacs wrote: Can anyone tell me what this error message mean? syntax error at ./dbubdate.pl line 181, near "}continue" The code around t

Re: error message

2008-04-20 Thread Xavier Noria
On Apr 20, 2008, at 22:45 , Levente Kovacs wrote: Thank you very much for your answer. I am sitting here for a day seeng what could be wrong, but I can't find it. I post a link to my code here. Thank you for your help in advance. http://logonex.eu/cgi-bin/viewvc/viewvc.cgi/scripts4geda/dbub

Re: error message

2008-04-20 Thread John W. Krahn
Levente Kovacs wrote: On Sun, 20 Apr 2008 22:09:21 +0200 Xavier Noria <[EMAIL PROTECTED]> wrote: On Apr 20, 2008, at 21:57 , Levente Kovacs wrote: Can anyone tell me what this error message mean? syntax error at ./dbubdate.pl line 181, near "}continue" The code around t

Re: error message

2008-04-20 Thread Levente Kovacs
i-bin/viewvc/viewvc.cgi/scripts4geda/dbubdate.pl?view=log On Sun, 20 Apr 2008 22:09:21 +0200 Xavier Noria <[EMAIL PROTECTED]> wrote: > On Apr 20, 2008, at 21:57 , Levente Kovacs wrote: > > > Can anyone tell me what this error message mean? > > > > syntax er

Re: error message

2008-04-20 Thread Chas. Owens
On Sun, Apr 20, 2008 at 3:57 PM, Levente Kovacs <[EMAIL PROTECTED]> wrote: > Hi all, > > Can anyone tell me what this error message mean? > > syntax error at ./dbubdate.pl line 181, near "}continue" > Execution of ./dbubdate.pl aborted due to compilation er

Re: error message

2008-04-20 Thread Xavier Noria
On Apr 20, 2008, at 21:57 , Levente Kovacs wrote: Can anyone tell me what this error message mean? syntax error at ./dbubdate.pl line 181, near "}continue" The code around that line in that script is not well-formed. If you don't know what to do please send lines 170 to

error message

2008-04-20 Thread Levente Kovacs
Hi all, Can anyone tell me what this error message mean? syntax error at ./dbubdate.pl line 181, near "}continue" Execution of ./dbubdate.pl aborted due to compilation errors. Thanx, -- Levente Kovacs <[EMAIL PROTECTED]> -- To unsubscribe, e-mail: [EMAIL PROTECTED] For add

Re: Getting error message while installing Crypt-DSA module

2007-10-23 Thread Tom Phoenix
On 10/23/07, kilaru rajeev <[EMAIL PROTECTED]> wrote: > I found following message while installing the Net::SSH module. > Please advice me know what it really meant. It really means that you've made a mistake at some earlier step, which you should go back and re-do. It looks as if your C compile

Re: Getting error message while installing Crypt-DSA module

2007-10-23 Thread kilaru rajeev
Hi All, Thanks for your quick responce. I found following message while installing the Net::SSH module. t/03-packet..Can't load '/crdv8/shared/perl/lib/site_perl/5.8.3/sun4-solaris/auto/Math/GMP/GMP.so' for module Math::GMP: ld.so.1: perl5.8.3: fatal: relocation error: file /crdv8/shared/per

Re: Getting error message while installing Crypt-DSA module

2007-10-23 Thread sisyphus
On Oct 23, 1:15 am, [EMAIL PROTECTED] (Kilaru Rajeev) wrote: > Hi All, > > I am getting the following error in the *make test* part while istalling the > *Crypt::DSA* module. Please give me an advice how to procede. > > t/03-keygen.*Math::BigInt: couldn't load specified math lib(s), fallback >

Re: Getting error message while installing Crypt-DSA module

2007-10-22 Thread Jeff Pang
It has showed the errors clearly,you should install those dependency modules before 'make test'. All the Math::BigInt::* modules are may needed. On 10/22/07, kilaru rajeev <[EMAIL PROTECTED]> wrote: > Hi All, > > I am getting the following error in the *make test* part while istalling the > *Crypt

Getting error message while installing Crypt-DSA module

2007-10-22 Thread kilaru rajeev
Hi All, I am getting the following error in the *make test* part while istalling the *Crypt::DSA* module. Please give me an advice how to procede. t/03-keygen.*Math::BigInt: couldn't load specified math lib(s), fallback to Math::BigInt::Calc* at /tmp/Crypt-DSA-0.14/blib/lib/Crypt/DSA/KeyChain

Re: error message

2006-07-10 Thread Rob Dixon
Rob Dixon wrote: > > Don't forget that we can't see bold emphasis on the mailing list: the > posts are > converted to plain text by the server. But your errors must be on the lines > > > $pos1 = int($pos1); > > $dist1 = int($dist1*100)/100; > > and are because $pos1 and $dist1 are undefined,

Re: error message

2006-07-10 Thread Dr.Ruud
"Geetha Weerasooriya" schreef: > while() { > chop; You must hate DOS. > s/\s//g; That already removes any CR or LF, so no chomp (or chop) was necessary. -- Affijn, Ruud "Gewoon is een tijger." -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: error message

2006-07-10 Thread Rob Dixon
Geetha Weerasooriya wrote: > > In my perl code for MapMatching, I have following while loop. When I run > the program I get the following two error messages(for each data line in > the data file) > But the out put file is created. > > Use of uninitialized value in int at filename.pl lineNo, line

error message

2006-07-10 Thread Geetha Weerasooriya
Dear All, In my perl code for MapMatching, I have following while loop. When I run the program I get the following two error messages(for each data line in the data file) But the out put file is created. Use of uninitialized value in int at filename.pl lineNo, line .. Use of unititialized valu

Re: error message

2006-07-10 Thread Owen Cook
On Mon, 10 Jul 2006, Geetha Weerasooriya wrote: > > In my perl code for MapMatching, I have following while loop. When I run > the program I get the following two error messages(for each data line in > the data file) > But the out put file is created. > > Use of uninitialized value in int at f

error message

2006-07-09 Thread Geetha Weerasooriya
Dear All, In my perl code for MapMatching, I have following while loop. When I run the program I get the following two error messages(for each data line in the data file) But the out put file is created. Use of uninitialized value in int at filename.pl lineNo, line .. Use of unititialized valu

Re: regarding panic error message.

2006-01-31 Thread Jay Savage
On 1/31/06, Nischitha <[EMAIL PROTECTED]> wrote: > Hello All, > > Can any one please explain me what are these panic error message. When will > they be generated. > > 1. Is it generated due to system level error > 2. Or is it generated due to user level coding.

Re: regarding panic error message.

2006-01-31 Thread Adriano Ferreira
On 1/31/06, Nischitha <[EMAIL PROTECTED]> wrote: > Can any one please explain me what are these panic error message. When will > they be generated. Panic error messages are usually triggered by Perl core code. I have seen them when some piece of the interpreter (like the parser)

regarding panic error message.

2006-01-30 Thread Nischitha
Hello All, Can any one please explain me what are these panic error message. When will they be generated. 1. Is it generated due to system level error 2. Or is it generated due to user level coding. regards Nischitha Failure is the step for success. If you know you are

Re: Find Error Message

2005-11-21 Thread Bob Showalter
[EMAIL PROTECTED] wrote: I am getting an error message - Can't stat c:*.*: No such file or directory find(\&BadNames,"c:\\*.*"); What should the find statement look like? The argument should be a directory name (or multiple directories), not a glob pattern. So use "

RE: Find Error Message

2005-11-21 Thread Timothy Johnson
I think it will work if you just leave out the *.* it will work. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, November 21, 2005 12:14 PM To: beginners@perl.org Subject: Find Error Message Hello I am working on a perl script and the 1st step is to

Find Error Message

2005-11-21 Thread andrewmchorney
Hello I am working on a perl script and the 1st step is to get a list of all the files on the C drive. I am getting an error message - Can't stat c:*.*: No such file or directory Here is my perl script: use strict; use warnings; use File::Find; $| = 1; #Autoflush STDOUT #finddepth

Re: Error message >The process tried to write to a nonexistent pipe.

2005-09-26 Thread Jeff Peng
u are wrong here: @Output = `cmd` ; it should be: @Output = `$cmd` ; 2005/9/26, Nath, Alok (STSD) <[EMAIL PROTECTED]>: > Hi, >Any idea why I am getting this error message ? > >C:\tmp\Scripts>The process tried to write to a nonexistent pipe. >

Error message >The process tried to write to a nonexistent pipe.

2005-09-26 Thread Nath, Alok (STSD)
Hi, Any idea why I am getting this error message ? C:\tmp\Scripts>The process tried to write to a nonexistent pipe. The process tried to write to a nonexistent pipe. The process tried to write to a nonexistent pipe. I am trying to run a dir command in

Re: error message with net::FTP

2005-08-01 Thread Tom Allison
Laurent Coudeur wrote: -Original Message- From: Owen [mailto:[EMAIL PROTECTED] Sent: 29 July 2005 00:07 To: beginners@perl.org Subject: Re: error message with net::FTP On Thu, 28 Jul 2005 10:17:35 -0400 "Laurent Coudeur" <[EMAIL PROTECTED]> wrote: I am having some

RE: error message with net::FTP

2005-07-29 Thread Laurent Coudeur
-Original Message- From: Owen [mailto:[EMAIL PROTECTED] Sent: 29 July 2005 00:07 To: beginners@perl.org Subject: Re: error message with net::FTP On Thu, 28 Jul 2005 10:17:35 -0400 "Laurent Coudeur" <[EMAIL PROTECTED]> wrote: > I am having some trouble with net::FT

Re: error message with net::FTP

2005-07-28 Thread Owen
On Thu, 28 Jul 2005 10:17:35 -0400 "Laurent Coudeur" <[EMAIL PROTECTED]> wrote: > I am having some trouble with net::FTP module > I get this error message > Timeout at /usr/lib/perl5/5.8/Net/FTP.pm line 1001 > > the script list directories in a path > then loo

error message with net::FTP

2005-07-28 Thread Laurent Coudeur
Hi there, I am having some trouble with net::FTP module I get this error message Timeout at /usr/lib/perl5/5.8/Net/FTP.pm line 1001 the script list directories in a path then loops and list subdirectories I can connect and list files but as I try to ls into final sub-directory it hangs I get

Re: What does this error message mean?

2005-06-12 Thread FreeFall
>./caught_errors" or die "Can't create > caught_errors: $!"; > > if ($number_of_args == 0) > { >print "Not enough arguments!\n"; > } > > foreach (my $i = 0; $i < $number_of_args; $i++) > { >print "g++ $ARGV[i] \n";

Re: What does this error message mean?

2005-06-12 Thread Peter Rabbitson
>print "g++ $ARGV[i] \n"; > Argument "i" isn't numeric in array element at > ./cedit01 line 61. It is exactly what it says - the string 'i' is not numeric and you are using it as an @ARGV index. Perhaps you meant $ARGV[$i]. Furthermore the whole c-loop construct is not very appropriate as p

What does this error message mean?

2005-06-12 Thread Christopher Spears
ments!\n"; } foreach (my $i = 0; $i < $number_of_args; $i++) { print "g++ $ARGV[i] \n"; } When I run the script like so: ./script blah I get the following error message: Argument "i" isn't numeric in array element at ./cedit01 line 61. g++ blah &q

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

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

Re: what does this error message mean?

2005-03-01 Thread Earthlink-m_ryan
", $ARGV[1]; &read_ce; &choose_vi; } else { print "Too many arguments!\n"; print "Usage: ./cedit somefile.C++\n"; print "Usage (optional): ./cedit somefile.C++ outputfile\n"; } Basically, I'm trying to automate g++. This script works,

what does this error message mean?

2005-03-01 Thread Christopher Spears
amp;choose_vi; } elsif ($number_of_args == 2) { system "g++", $ARGV[0], "-o", $ARGV[1]; &read_ce; &choose_vi; } else { print "Too many arguments!\n"; print "Usage: ./cedit somefile.C++\n"; print "Usage (optional): ./c

Re: Need Help with 'Out of Memory!' Error message situation

2004-10-04 Thread Jenda Krynicky
From: Tony Frasketi <[EMAIL PROTECTED]> > Hello group > I'm getting the following error message when running my Perl program: > > Out of Memory! > > The program reads in an ASCII file into a string variable $lines. Then > parses $lines looking for cert

Need Help with 'Out of Memory!' Error message situation

2004-10-03 Thread Tony Frasketi
Hello group I'm getting the following error message when running my Perl program: Out of Memory! The program reads in an ASCII file into a string variable $lines. Then parses $lines looking for certain types of entities as follows... while ($lines =~ s/(INSERT INTO.+?)\#(.+)/

Re: Impossible error message

2004-05-29 Thread Paul Johnson
tting "$user->LastName()" into a string > to be printed.) I fixed it. Now I my program doesn't compile, and > it's giving me an error message that makes no sense to me: > > Can't use string ("UserList") as a HASH ref while "strict refs" in use &g

Impossible error message

2004-05-29 Thread Rob Richardson
x27;t compile, and it's giving me an error message that makes no sense to me: Can't use string ("UserList") as a HASH ref while "strict refs" in use at UserList.pm line 66, line 1. Here is the function containing line 66: sub GetUser { my $self = shift;

Re: Help with Error Message: Can't use an undefined value as a hash reference

2003-11-13 Thread Rob Dixon
gt; } > > $SQL .= "\n"; > > } > > #-right here-- > > } > > $SQL .= ");\n\n"; > > return $SQL; > > Given that your error message indicates a problem with a hash ref, and that > the compiler stopped at

Re: Help with Error Message: Can't use an undefined value as a hash reference

2003-11-13 Thread R. Joseph Newton
> } > #-right here-- > } > $SQL .= ");\n\n"; > return $SQL; Given that your error message indicates a problem with a hash ref, and that the compiler stopped at the end of a loop, I'd say the problem has something to do with mismat

Re: Help with Error Message: Can't use an undefined value as a hash reference

2003-11-12 Thread Tore Aursand
On Wed, 12 Nov 2003 18:29:01 -0500, Dan Anderson wrote: > I'm completely lost trying to debug it because the line in question is a > }. Well. I'm totally lost, too. There's a lot of things in the code which you can improve to make it more fail-safe, but for now: What line are you referring to?

RE: Help with Error Message: Can't use an undefined value as a hash reference

2003-11-12 Thread Jeff 'japhy' Pinyan
On Nov 12, Dan Anderson said: > while (my %hash = %{ shift (@columns) }) { > ... > } Here is the problem. When @columns is empty, it returns undef, and you can't do %{ +undef }. So, do this: while (my $href = shift @columns) { # then use $href->{...} # or do

RE: Help with Error Message: Can't use an undefined value as a hash reference

2003-11-12 Thread Dan Anderson
On Wed, 2003-11-12 at 18:30, Dan Muey wrote: > > I am using the following code and keep getting a message that > > says "Can't use an undefined value as a hash reference." I'm > > completely lost trying to debug it because the line in > > question is a }. I was wondering if any guru could spot

RE: Help with Error Message: Can't use an undefined value as a hash reference

2003-11-12 Thread Dan Muey
> I am using the following code and keep getting a message that > says "Can't use an undefined value as a hash reference." I'm > completely lost trying to debug it because the line in > question is a }. I was wondering if any guru could spot some There are many references , what line number

Help with Error Message: Can't use an undefined value as a hash reference

2003-11-12 Thread Dan Anderson
I am using the following code and keep getting a message that says "Can't use an undefined value as a hash reference." I'm completely lost trying to debug it because the line in question is a }. I was wondering if any guru could spot some newbie idiocy in my code. I am, of course, using strict a

RE: new, exciting error message III

2003-09-03 Thread Paul Kraus
http://search.cpan.org/search?query=rtf&mode=all -Original Message- From: Nestor, John [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 03, 2003 9:10 AM To: [EMAIL PROTECTED]; '[EMAIL PROTECTED]' Subject: RE: new, exciting error message III Thanks for the help, Dav

RE: new, exciting error message III

2003-09-03 Thread Nestor, John
-- > From: david > Reply To: [EMAIL PROTECTED] > Sent: Tuesday, September 2, 2003 1:02 PM > To: [EMAIL PROTECTED] > Subject: Re: new, exciting error message III > > John Nestor wrote: > > > A couple of days ago, I sent in some code wi

Re: new, exciting error message III

2003-09-02 Thread david
John Nestor wrote: > A couple of days ago, I sent in some code with an error message: > > Can't find unicode character property definition via main->a or a.plFile > 'unicode/Is/a.pl'; Line 0 > > As it turns out, the code sample I included was not the cause o

new, exciting error message III

2003-09-01 Thread Nestor, John
A couple of days ago, I sent in some code with an error message: Can't find unicode character property definition via main->a or a.plFile 'unicode/Is/a.pl'; Line 0 As it turns out, the code sample I included was not the cause of the problem, apparently. However, if I comment

Re: new, exciting error message II

2003-08-31 Thread Jenda Krynicky
From: "Nestor, John" <[EMAIL PROTECTED]> > Sent this MacPerl yesterday, no response yet. But from what little > I've seen on this error via google, I think it's a reg exp problem, > not platform specific. Any ideas? Any documentation I should check > out? All help accepted gratefully. Please try a

new, exciting error message II

2003-08-30 Thread Nestor, John
; I've just run across an error message I've never seen before: > > # Can't find unicode character property definition via main->a or a.plFile > 'unicode/Is/a.pl'; Line 0 > This occurred after adding the following code to a script that was > functioning: >

Re: What is this error message, please?

2003-02-13 Thread Rob Dixon
Gan Uesli Starling wrote: > I see hundreds of these error messages from -w switch... > > Character in "C" format wrapped at ./FYBB_DirTree.pm line 867. > > ...here is line 867... > > $buf = pack( 'C*', @{ $bufRfs[0] } ); > > ...but my program (an encryption routine) works jus fine. I > packing with

  1   2   >