Re[4]: SFTP, WinXP Perl 5.8.8

2008-12-05 Thread Christopher Taranto
On Fri, December 5, 2008 12:48 am, Tshimanga Minkoka wrote: I added the repo uwinninpeg. Then tried to install Net-SFTP. And it complained about missing Crypt-IDEA. Unfortunately, I counldn't find it in On Wed, December 3, 2008 7:35 am, Tshimanga Minkoka wrote: From which repository can I

RE: Re[4]: SFTP, WinXP Perl 5.8.8

2008-12-05 Thread Tshimanga Minkoka
OK. I've successfully installed Net-SSH2. I'll try it and revert back the results to the list. Thanks Tshimanga. -Original Message- From: Christopher Taranto [mailto:[EMAIL PROTECTED] Sent: Friday 05 December 2008 10:42 To: Tshimanga Minkoka Cc:

Re: long lasting command execution from cgi

2008-12-05 Thread Chris Wagner
It sounds like u just want to display the the output file in the web browser. A simple redirect will do that. Are u looking for something more than that? At 10:58 PM 12/4/2008 -0800, [EMAIL PROTECTED] wrote: I wonder whether I can query on Unix Perl here. However I would appreciate if someone

Re: NET::SSH2 - No Output

2008-12-05 Thread Chris Wagner
At 02:04 PM 12/4/2008 -0600, SelfSimilar wrote: try something like print $buf while (($len = $chan-read($buf,512))||0) 0); Thank you for the suggestion. Unfortunately, it get the same error warning Use of uninitialized value in numeric gt () at SFTP_test2.pl line 21 I have to chime in.

problem with TK

2008-12-05 Thread Daniel Burgaud
Hi I have a problem with TK. for (my $i = 0; exists $transactions{$account}[$i]; $i++) { next if $transactions{$account}[$i]{'type'} 0;#do not display this . . . $frames{'data-r'}-insert('end', $line, [T$i, $colortag]); print debug: $i\n;

Re: NET::SSH2 - No Output

2008-12-05 Thread listmail
Chris Wagner wrote: At 02:04 PM 12/4/2008 -0600, SelfSimilar wrote: try something like print $buf while (($len = $chan-read($buf,512))||0) 0); Thank you for the suggestion. Unfortunately, it get the same error warning Use of uninitialized value in numeric gt () at SFTP_test2.pl

Re: NET::SSH2 - No Output

2008-12-05 Thread Chris Wagner
At 04:10 PM 12/5/2008 -0500, listmail wrote: I have to chime in. That kind of construct is just plain wrong. :) U need an if{} block to test for every possible return type of $chan-read(). i.e. blank, undef, valid number, invalid number, and other junk. U've fallen Uh, I think you are just