problem installing GD

2004-12-22 Thread Octavian Rasnita
Hi all, I have tried installing GD under Linux with Perl 5.8.4 but it gave me the errors below. Does anyone know what can I do to be able to install GD? I have tried: perl -MCPAN -e 'install GD;' Thank you. ... at t/GD.t line 13 Compilation failed in require at t/GD.t line 13. BEGIN failed--c

Re: Fedora core 3 breaks sendmail functionality???

2004-12-22 Thread mgoland
- Original Message - From: Michael Kraus <[EMAIL PROTECTED]> Date: Wednesday, December 22, 2004 6:47 pm Subject: Fedora core 3 breaks sendmail functionality??? > G'day... Hello > > I've recently upgraded to Fedora Core 3, and have found that now > my Perl > scripts which use the MIME::

Re: LWP get only img

2004-12-22 Thread mgoland
- Original Message - From: Brian Volk <[EMAIL PROTECTED]> Date: Wednesday, December 22, 2004 12:59 pm Subject: LWP get only img > Hi All, Hello > > I have a list of url source files... I need to get a certain " src="from each file. The one thing that separates it from the > other

NCR to Shift JIS

2004-12-22 Thread Mallik
Hi all, I have a requirement whrein i need to convert the NCR values representing Japanese characters back into the Shift_JIS equivalent characters. Is there a Perl code/module available for the same. Thanks in advance, Mallik. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comman

Re: Word Automation through Win32::OLE

2004-12-22 Thread Jenda Krynicky
From: Jonathan Paton <[EMAIL PROTECTED]> > > print "$fileName\n"; > > $doc->ActiveDocument->SaveAs({FileName => $fileName, > > FileFormat => wdFormatRTF}) > > 'Can't call method "SaveAs" on an undefined value'. > > That clearly means that "$doc->ActiveDocument" evaluates

Re: Word Automation through Win32::OLE

2004-12-22 Thread Jonathan Paton
Dear Mark, > Long time lurker, first time poster...please be gentle. Shame you missed the many comments on strict and warnings. Consider these mandatory whilst learning: use strict; use warnings; I am not familar with Win32::OLE, but there is certainly some errors in your code I can show you.

Re: Some more Qs on FORMAT

2004-12-22 Thread John W. Krahn
Hawkes, Mick I wrote: OK, I followed Johns advice and looked up Perform, excellent! But there some things I still don't understand. How do I work with the format? I don't won't to write it to STDOUT because I am using HTML::Template but I want to send it as an email using MIME::Lite. To assign data

Fedora core 3 breaks sendmail functionality???

2004-12-22 Thread Michael Kraus
G'day... I've recently upgraded to Fedora Core 3, and have found that now my Perl scripts which use the MIME::Lite module no longer work. According to the error log, the problem is their seems to be permission problems executing sendmail. (See below) [Thu Dec 23 10:07:52 2004] [error] [client 1

Some more Qs on FORMAT

2004-12-22 Thread Hawkes, Mick I
OK, I followed Johns advice and looked up Perform, excellent! But there some things I still don't understand. How do I work with the format? I don't won't to write it to STDOUT because I am using HTML::Template but I want to send it as an email using MIME::Lite. To assign data to an email in MIME

Word Automation through Win32::OLE

2004-12-22 Thread Cutter
Long time lurker, first time poster...please be gentle. I am attempting to move through a directory, pull out only files of a .fin extension (which is Word document format), save each one as .rtf (Rich Text Format). I'd also like to be able to run some predefined macros on the files, but I thou

Word Automation through Win32::OLE

2004-12-22 Thread Mark Shellenberger
Long time lurker, first time poster...please be gentle. I am attempting to move through a directory, pull out only files of a .fin extension (which is Word document format), save each one as .rtf (Rich Text Format). I'd also like to be able to run some predefined macros on the files, but I tho

LWP get only img

2004-12-22 Thread Brian Volk
Hi All, I have a list of url source files... I need to get a certain "? Maybe I could write a regex to do this? pointers? I've broken my script down to try and get the http://www.rcpworksmarter.com/rcp/products/detail.jsp?rcpNum=1013

ppm error

2004-12-22 Thread Octavian Rasnita
Hi all, I have tried to install Text::Autoformat and here is what it have done: Downloaded 17035 bytes. Extracting 5/5: blib/arch/auto/Text/Autoformat/.exists Installing F:\usr\html\site\lib\Text\Autoformat.html Successfully installed Text-Autoformat version 1.12 in ActivePer

Recommend

2004-12-22 Thread Mike Blezien
Hello, appologize for the off-topic, but we're looking for good Perl/MySQL BBS system. Been to hotscripts.com they list a ton, but was hoping to get some feedback/recommendation from the Perl list about a good Perl/MySQL bulletin board. Don't want to use those PHP boards! Any feedback is much a

Re: executing a .cgi script (passing some arguments) through php

2004-12-22 Thread JupiterHost.Net
Exactly, i am forced to do that :) bummer :) I'd say search on php.net for "system". Executing perl in PHP would be the same as executing a C program or Python or Java, etc... So its not really a Perl question -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL P

Re: executing a .cgi script (passing some arguments) through php

2004-12-22 Thread John
- Original Message - From: "JupiterHost.Net" <[EMAIL PROTECTED]> To: "Perl Beginners" Sent: Wednesday, December 22, 2004 5:32 PM Subject: Re: executing a .cgi script (passing some arguments) through php > > > John wrote: > > > Has anyone tried that? > > Hmm, No I haven't . > have you?

Re: executing a .cgi script (passing some arguments) through php

2004-12-22 Thread JupiterHost.Net
John wrote: Has anyone tried that? Hmm, No I haven't . have you? My question would be "why"? Its kind of like driving a king around in a Pinto. Why use crappy old PHP to execute Perl to do the real work? Just use Perl instead of PHP . Assuming you're being forced at gun point to do it that wa

RE: A very simple example program Comparing Perl, Python and Java

2004-12-22 Thread Richard Monson-Haefel
Thanks, everyone! Not only did I learn a lot more about Perl, I was also given several alternative ways of doing my program more efficiently. This will help me illustrate the "many ways" of doing things in Perl. Something I wanted to do, but didn't have the skill. The "many ways" example will use a

executing a .cgi script (passing some arguments) through php

2004-12-22 Thread John
Has anyone tried that?