Re: Executable program from perl script

2002-05-03 Thread Sisyphus
- Original Message - From: "Sushil Kumar Gupta" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 03, 2002 10:54 PM Subject: Executable program from perl script > Hi, > > I have to execute one exe from my perl script. This exe is sort of > interactive where i need to give th

Re: Perl Modularisation

2002-05-03 Thread Sisyphus
- Original Message - From: "Sean Ahern" <[EMAIL PROTECTED]> > > And now it gets strange. > > I can do > > require "mod3.pm" > > and that's fine. > > But I don't seem to be able to get relative paths > > require "./Modules/mod3.pm" or require ".\\Modules\\mod3.pm" > That *is* s

Re: Mail::Sender and HTML::Template question

2002-05-03 Thread David Kaufman
"Kevin" <[EMAIL PROTECTED]> wrote: > I am trying to send mail using Mail::Sender and have been unsuccessful. I am > using HTML::Template object to hold the mail template . > > my $thtml = $self->load_tmpl($config->get_base_template_path . > $config->get_MAIL_order_confirm_client, die_on_bad_par

Re: Problems with ActivePerl built-in debugger (perl -d)

2002-05-03 Thread Carl Jolley
On Thu, 2 May 2002, John Brooking wrote: > Greetings, > >I have recently re-installed ActivePerl several > times, and at some point, the built-in debugger became > non-functional. It was working fine for the several > months before that since I first installed ActivePerl. > I've made sure my

Mail::Sender and HTML::Template question

2002-05-03 Thread Kevin
Hello, I am trying to send mail using Mail::Sender and have been unsuccessful. I am using HTML::Template object to hold the mail template . my $thtml = $self->load_tmpl($config->get_base_template_path . $config->get_MAIL_order_confirm_client, die_on_bad_params => 0); my $sender = new Mail::Sen

RE: Outlook 2K / mailing list

2002-05-03 Thread Capacio, Paula J
Bob- You could also sign up for the "digest" version instead of receiving each message as it's sent. That way you get 1-2 a day with a TodaysTopics.txt index. It's good way if you're just listening versus contributing. You can do that by changing your subscription options here: http://listse

Win32::API - FlashWindow

2002-05-03 Thread Jack
I am trying the following code on Win95 - I get no errors, but the window doesn't flash. According to the API docs, the titlebar should flash (alternated between inactive and active colors) whether it is iconified or not. Can someone enlighten me as to why this does not work? Does it work on

RE: Secure platforms DO matter!

2002-05-03 Thread Joe Schell
> -Original Message- > Behalf Of Aaron Trevena > > > > Presuming of course that the server is set up to be secure. > All of those > > OSes can have large gaping holes in their security caused both by > > admin user action and inaction. > > If you were to chose a server for your bank to us

RE: Perl from CD?

2002-05-03 Thread Thomas_M
[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] wrote: > What I really dont get is how can I run Perl from the CD. Is > there a way to install a Web server on a CD or make a perl > freestanding exe file that runs from the CD that is not in a > DOS format? Yes. It's in the FAQ. -- Mark Thomas

RE: Perl Modularisation

2002-05-03 Thread Aaron Trevena
> At 16:25 03/05/2002 +0100, Aaron Trevena wrote: > >path/to/module/module.pm can be accessed as : > >use path::to::module::module; > > > >where the module starts : > >package path::to::module::module; > > And as far as I know perl only finds this if it is in the perl > search path > @INC. Which

Secure platforms DO matter!

2002-05-03 Thread Aaron Trevena
> Presuming of course that the server is set up to be secure. All of those > OSes can have large gaping holes in their security caused both by > admin user action and inaction. If you were to chose a server for your bank to use would you prefer it had 5 to 10 vulnerabilities a year of which 1 or

RE: Perl Modularisation

2002-05-03 Thread Ember Normand
Save I have a perl module (MyPerlPackage.pm) that is located 1 directory up and down in the directory directoryname. Here's how I would get to it: use lib '../directoryname'; use MyPerlPackage; -Original Message- From: Sean Ahern [mailto:[EMAIL PROTECTED]] Sent: Friday, May 03, 2002 11:

OT: Web Server Security (was once RE: Stress Test Theory?)

2002-05-03 Thread Lee Goddard
> > Running Apache is more secure than running IIS, but still less secure than > > if you ran apache on UNIX, Linux, AS/400, OS/2 or any other > > server operating > > system. Hence few people reccomending you run ANYTHING on windows in > > production. > > > >Presuming of course that the server i

RE: Perl Modularisation

2002-05-03 Thread Sean Ahern
At 16:25 03/05/2002 +0100, Aaron Trevena wrote: >path/to/module/module.pm can be accessed as : >use path::to::module::module; > >where the module starts : >package path::to::module::module; And as far as I know perl only finds this if it is in the perl search path @INC. Which its not, because I