RE: WinNT perl scripts - adding modules on all machines

2004-01-28 Thread Bakken, Luke
> Just a question or doubt I had. Now using > activestate's activeperl if I deploy it on all > machines on my network. And I have certain scripts for > those machines. If I release a new script that depends > on a perl module not on the activeperl distribution by > default how can I distrub

Re: WinNT perl scripts - adding modules on all machines

2004-01-28 Thread DJ Meyer
"Saadat Saeed" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Just a question or doubt I had. Now using > activestate's activeperl if I deploy it on all > machines on my network. And I have certain scripts for > those machines. If I release a new script that depends > on a perl

WinNT perl scripts - adding modules on all machines

2004-01-27 Thread Saadat Saeed
Just a question or doubt I had. Now using activestate's activeperl if I deploy it on all machines on my network. And I have certain scripts for those machines. If I release a new script that depends on a perl module not on the activeperl distribution by default how can I distrubute the modu

Apache & WINNT : Thank you note...

2003-01-16 Thread Ben Crane
Hi, I just wanted to say a HUGE thank you to: David Kirol Bob Showalter Dan Muey for their combined help in getting perl to work on my apache server...it was a combination of sorting out the httpd file and changing the perl path from #!usr/local/bin/perl to #!c:/perl/bin/perl.exe (something I di

Re: Missing (defined($exe) mail prog on WINNT

2002-09-20 Thread rob
Hi Tim Thanks for helping out >r> $fh = $msg->open; # some default mailer >r> # $fh = $msg->open('sendmail'); # explicit > >I am guessing this is where your problem is. It looks like the above >is specifying the MTA to deliver the message. What are you setting it >to

Re: Missing (defined($exe) mail prog on WINNT

2002-09-20 Thread Tim Musson
Hey rob, My MUA believes you used Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.0.0) Gecko/20020530 to write the following on Friday, September 20, 2002 at 7:36:37 PM. r> When the program runs I get the following error, which seems to be r> saying I need a system mail program... somet

Missing (defined($exe) mail prog on WINNT

2002-09-20 Thread rob
Hello list Ive tried to experiment with using perl for mail (calling form another program -Excel sheet macro) So I installed **MailTools-1.50** and used an example form Mail::Mailer at CPAN. http://search.cpan.org/author/MARKOV/MailTools-1.50/Mail/Send.pm When the program runs I get the follow

RE: WINNT

2002-07-30 Thread Hanson, Rob
nd line (if you haven't already) to see what happens, most likely you will see an error. Rob -Original Message- From: Omar Shariff [mailto:[EMAIL PROTECTED]] Sent: Monday, July 29, 2002 2:18 PM To: [EMAIL PROTECTED] Subject: WINNT Hi, i'm having problems with WIN NT, oracle and DBI,

RE: WINNT

2002-07-30 Thread Kipp, James
ecute() to a variable. just execute it then use one of the methods for outputting the data > -Original Message- > From: Omar Shariff [mailto:[EMAIL PROTECTED]] > Sent: Monday, July 29, 2002 2:18 PM > To: [EMAIL PROTECTED] > Subject: WINNT > > > Hi, i'm having pr

WINNT

2002-07-30 Thread Omar Shariff
Hi, i'm having problems with WIN NT, oracle and DBI, i write a script use DBI; $cta = 85498932; my $dbh = DBI->connect("dbi:Oracle:para_lelos", "gonzalo", "pepepepe") or die "No se puede establece la coneccion $data_source: $DBI::errstr"; my $sth = $dbh->prepare(q{SELECT * FROM

RE: Mail::Sender on WinNT - can't connect

2002-02-15 Thread murphy, daniel (BMC Eng)
> > I get, > > connect() failed: Unknown error Jenda said: Does that server accept SMTP ? If you try telnet srmontana 25 do you connect and get a reply something like: 220 srmontana.emc.com MS Exchange ESMTP server ready. If not you'll have to find another server to relay th

RE: Mail::Sender on WinNT - can't connect

2002-02-15 Thread Mark Richmond
} exit 0; > -Original Message- > From: Jenda Krynicky [mailto:[EMAIL PROTECTED]] > Sent: Friday, February 15, 2002 10:57 AM > To: '[EMAIL PROTECTED]' > Subject: Re: Mail::Sender on WinNT - can't connect > > > From: "murphy, daniel

Re: Mail::Sender on WinNT - can't connect

2002-02-15 Thread Jenda Krynicky
From: "murphy, daniel (BMC Eng)" <[EMAIL PROTECTED]> > I've been wanting to send mail from some of my scripts, so I thought > I'd see how to get it to work. > > I chose to use Mail::Sender and am running Perl 5.005_03 from > ActiveSt

RE: Mail::Sender on WinNT - can't connect

2002-02-15 Thread Nikola Janceski
ry 15, 2002 9:51 AM To: '[EMAIL PROTECTED]' Subject: Mail::Sender on WinNT - can't connect I've been wanting to send mail from some of my scripts, so I thought I'd see how to get it to work. I chose to use Mail::Sender and am running Perl 5.005_03 from ActiveState build 5

Mail::Sender on WinNT - can't connect

2002-02-15 Thread murphy, daniel (BMC Eng)
I've been wanting to send mail from some of my scripts, so I thought I'd see how to get it to work. I chose to use Mail::Sender and am running Perl 5.005_03 from ActiveState build 522 (I know, it's old) on WinNT. When I run this simple test script: use Mail::Sender; ref

Re: Calling external executable with parameter under WinNT.

2001-10-30 Thread Pete Sergeant
> `"$batch" "$name"`; > #! doesn't work - and that's the clue of my problems > > and also system doesn't want to work with $batch and $name as it's parameter `` interpolates. You probably want: `"$batch $name"`; or some permutation of. Happy to help +Pete -- [EMAIL PROTECTED] ;;($_='Yw_xUabcd

RE: Calling external executable with parameter under WinNT.

2001-10-30 Thread Rubiniec, Krzysztof
> -Original Message- > From: Gary Hawkins [mailto:[EMAIL PROTECTED]] > Sent: Monday, October 29 2001 11:21 PM > To: Rubiniec, Krzysztof; [EMAIL PROTECTED] > Subject: RE: Calling external executable with parameter under WinNT. > > > #!perl.exe > > $name

RE: Calling external executable with parameter under WinNT.

2001-10-30 Thread Gary Hawkins
o:[EMAIL PROTECTED]] > Sent: Tuesday, October 30, 2001 1:49 AM > To: '[EMAIL PROTECTED]' > Subject: Calling external executable with parameter under WinNT. > > > > Hi, anybody knows why I can't call external executable with a parameter > under WinNT (I use cm

Calling external executable with parameter under WinNT.

2001-10-30 Thread Rubiniec, Krzysztof
Hi, anybody knows why I can't call external executable with a parameter under WinNT (I use cmd "shell"). The parameter is a name of file containing spaces, and that's probably the source of problems. I have been trying to do that in many ways, but none of them works. # for i