RE: problem running cli program from perl cgi script..

2001-01-02 Thread Naftel, Bill S
;print;; -Original Message- From: Schiza, Apostolia (ISS Atlanta) [ mailto:[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> ] Sent: January 2, 2001 11:52 AM To: 'Ron Grabowski'; perl-win32-web@listserv. ActiveState. com (E-mail) Subject:

RE: problem running cli program from perl cgi script..

2001-01-02 Thread Schiza, Apostolia (ISS Atlanta)
Title: RE: problem running cli program from perl cgi script.. Unfortunately the script still acts funny! It executes fine from command line, but when I pull it on the web browser it just hungs there... the task manager shows perl.exe, cmd.exe and get_events.exe running till who knows when

RE: problem running cli program from perl cgi script..

2001-01-02 Thread Trevor Joerges
Title: RE: problem running cli program from perl cgi script.. I'd suggest using single quotes around the $get_events string or if you need variable interpolation of "machine1" then change the system call to something like:     @args = ("get_events.exe",&q

RE: problem running cli program from perl cgi script..

2001-01-02 Thread Schiza, Apostolia (ISS Atlanta)
om: Ron Grabowski [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 02, 2001 11:08 AM To: perl-win32-web@listserv. ActiveState. com (E-mail) Subject: Re: problem running cli program from perl cgi script.. > Any ideas why this is happening? Is it a permission problem? Its hard to tell without some s

Re: problem running cli program from perl cgi script..

2001-01-02 Thread Ron Grabowski
> Any ideas why this is happening? Is it a permission problem? Its hard to tell without some source code. What does $! say? Are you checking the return status of the system call? ___ Perl-Win32-Web mailing list [EMAIL PROTECTED] http://listserv.ActiveS

problem running cli program from perl cgi script..

2001-01-02 Thread Schiza, Apostolia (ISS Atlanta)
Hello again, I have a perl cgi script which calls a command line program, which tries to open a file to write data to it. The script works fine when I compile it and run it from command line, but when I run it from the browser it does nothing, it just hungs there... Any ideas why this is happening