Re: How a file gets copied remotely

2006-08-03 Thread Packy Anderson
On Aug 3, 2006, at 1:22 AM, David Ledger wrote: If M1 copies the file from M2 to M3 then the data comes all the way to M1 and all the way back. That would be the case if M1 used scp to copy from M2 to M3, but that's not what Ted described. M1 makes an ssh connection to M2. Then, on M2,

Fwd: DBD::mysql OS X

2006-08-03 Thread Jay Savage
nd again with the reply-to. -- Forwarded message -- From: Jay Savage [EMAIL PROTECTED] Date: Aug 3, 2006 10:40 AM Subject: Re: DBD::mysql OS X To: Walter Copenhaver [EMAIL PROTECTED] On 8/3/06, Walter Copenhaver [EMAIL PROTECTED] wrote: Hello, Has someone manage to

Re: DBD::mysql OS X

2006-08-03 Thread Sherm Pendley
On Aug 3, 2006, at 10:41 AM, Jay Savage wrote: On 8/3/06, Walter Copenhaver [EMAIL PROTECTED] wrote: Hello, Has someone manage to install DBD::mysql in Mac X Tiger. Can anyone point me to a tutorial or how to do this. Thanks Walter, Can you tell us specifically what problems you're

Re: How a file gets copied remotely

2006-08-03 Thread Doug McNutt
Perhaps I'm ranting but this IS an Apple based list. In MacOS classic from M1, I can mount a folder that exists on M2 and another folder that exists on M3. Dragging a file, as an icon on a CRT connected to M1, from M2 to M3 goes directly with no problem. I think it's because high level

Re: DBD::mysql OS X

2006-08-03 Thread Jay Savage
On 8/3/06, Sherm Pendley [EMAIL PROTECTED] wrote: On Aug 3, 2006, at 10:41 AM, Jay Savage wrote: The only caveat I can think of is that the tests assume you're installing DBD::mysql against a fresh MySQL installation with the root password still unset. They assume no such thing. They

Re: DBD::mysql OS X

2006-08-03 Thread Sherm Pendley
On Aug 3, 2006, at 2:02 PM, Jay Savage wrote: On 8/3/06, Sherm Pendley [EMAIL PROTECTED] wrote: On Aug 3, 2006, at 10:41 AM, Jay Savage wrote: The only caveat I can think of is that the tests assume you're installing DBD::mysql against a fresh MySQL installation with the root password

Problems installing Net::SSH::Perl'

2006-08-03 Thread Michael Barto
This modules fails to install from CPAN perl -MCPAN -e 'install Net::SSH::Perl' with error installation in installation of Math::GMP. Hence Net::SSH::Perl module cannot be installed. This problem needs to be corrected. Does anyone know how to get by this problem and how can it be reported to

Creating a Perl Module Problem

2006-08-03 Thread Elton Hughes
Hello All, I have a problem at work I need to solve. I am toying with the idea of creating a special purpose Perl module to store data on some of clients. So I have written a little test/proof of concept/far from complete module that looks like this: package NOVA::Client; use strict; use

Re: Problems installing Net::SSH::Perl'

2006-08-03 Thread Sherm Pendley
On Aug 3, 2006, at 4:45 PM, Michael Barto wrote: This modules fails to install from CPAN perl -MCPAN -e 'install Net::SSH::Perl' with error installation in installation of Math::GMP. Hence Net::SSH::Perl module cannot be installed. This problem needs to be corrected. Does anyone know how

Re: Creating a Perl Module Problem

2006-08-03 Thread Sébastien Aperghis-Tramoni
Elton Hughes wrote: Hello All, Hello, [...] print New Client Days: $client-get_days\n; -- But my output is this: [/Users/ehughes/Projects/Perl] # perl t_client.pl New Client Days: NOVA::Client=HASH(0x1801380)-get_days I must be a lot brain tired because I am forgetting

Re: Problems installing Net::SSH::Perl'

2006-08-03 Thread Ted Zeng
You just have to install those missing modules one by one. Some are software libraries. You just have to go to get those libs and install them by following the instruction. I have done this before. It took me quite a while to finish it. But it can be done. Since I have done this one year ago, I

Re: Creating a Perl Module Problem

2006-08-03 Thread Sherm Pendley
On Aug 3, 2006, at 5:54 PM, Elton Hughes wrote: print New Client Days: $client-get_days\n; -- But my output is this: [/Users/ehughes/Projects/Perl] # perl t_client.pl New Client Days: NOVA::Client=HASH(0x1801380)-get_days I must be a lot brain tired because I am forgetting

Re: Creating a Perl Module Problem - Solved

2006-08-03 Thread Elton Hughes
Thanks Sebastien and Sherm! That was the problem alright. Silly error on my part. Thank you again for your time and response. Elton On Aug 3, 2006, at 3:07 PM, Sherm Pendley wrote: On Aug 3, 2006, at 5:54 PM, Elton Hughes wrote: print New Client Days: $client-get_days\n; -- But