CGI Problem

2004-08-26 Thread Dimitra Atri
Hello, I am facing a problem related to cgi scripting. Kindly let me know the solution to it or please refer to some website so that I can resolve it. PROBLEM: How to run a .exe file though cgi script? DESCRIPTION: I have an executable file which I intend to put on the server. The interface is

Re: CGI Problem

2004-08-26 Thread Sean Davis
Dimitra, Generally, the CGI script has to have permissions to run the executable. The executable has to be supplied input, typically from a command line input (via system call) or from a file written to disk and read by the executable (or piped, etc.). The output of the executable needs to

Re: CGI Problem

2004-08-26 Thread Chris Devers
On Thu, 26 Aug 2004, Dimitra Atri wrote: I am facing a problem related to cgi scripting. Kindly let me know the solution to it or please refer to some website so that I can resolve it. PROBLEM: How to run a .exe file though cgi script? DESCRIPTION: I have an executable file which I intend to put

Re: CGI problem

2004-07-30 Thread Jan Eden
Hi Jane, Sun, Jian wrote on 29.07.2004: Dear Beginner-cgi: I used a CGI program to load a HTML form page as shown below, After I filled the form and submit, the results is just attached to the initiated form page when it leads to the new webpage. My question is: how can I load to a new HTML

CGI problem

2004-07-29 Thread Sun, Jian
Dear Beginner-cgi: I used a CGI program to load a HTML form page as shown below, After I filled the form and submit, the results is just attached to the initiated form page when it leads to the new webpage. My question is: how can I load to a new HTML page after I submit the form?

Want CGI script to test and start daemon - was Re: CGI problem, please help

2003-09-12 Thread drieux
On Friday, Sep 12, 2003, at 00:47 US/Pacific, [EMAIL PROTECTED] wrote: Sergey, ah, I see, you are new to the Ungainly Art, of not only programming, which you are doing well in, but the more Arcane art of Daemonology. So bear with me while I try to write some 'back and fill' here. A part of the

CGI problem, please help

2003-09-10 Thread Sergey . Garanin
Hello, Please help me with the following problem: I use two simple programs - start.pl, which might be executed from a browser or under shell: #!/usr/bin/perl -w open(PID, pid) || die Can't open PID file: $!; $pid = PID; close PID; if(defined $pid){ if($pid==0){ print Location:

Re: CGI problem

2002-10-03 Thread zentara
On Wed, 2 Oct 2002 07:43:58 -0700 (PDT), [EMAIL PROTECTED] (Yahaya Mohammed) wrote: Note: forwarded message attached. Your method of forwarding attached messages makes it difficult to cut-n-paste comments in. In the future, put the message in the message body . Anyways, since you are just

Re: CGI problem

2002-10-03 Thread zentara
On Thu, 03 Oct 2002 07:34:13 -0400, [EMAIL PROTECTED] (Zentara) wrote: Oops, keep forgetting the header. :-) The following will send the form variables back to the browser. ### #!/usr/bin/perl use warnings; use strict; use CGI; my $cgi=new

Re: CGI problem

2002-10-03 Thread fliptop
On Thu, 3 Oct 2002 at 08:52, zentara opined: z:On Thu, 03 Oct 2002 07:34:13 -0400, [EMAIL PROTECTED] (Zentara) z:wrote: z: z:Oops, keep forgetting the header. :-) The following will z:send the form variables back to the browser. z: z:###

CGI problem

2002-10-02 Thread Yahaya Mohammed
Note: forwarded message attached.Do you Yahoo!? New DSL Internet Access from SBC & Yahoo!---BeginMessage--- Hi. This is the qmail-send program at onion.perl.org. I'm afraid I wasn't able to deliver your message to the following addresses. This is a permanent error; I've given up. Sorry it didn't

Mod Perl / CGI problem

2002-05-07 Thread Elwyn Chow
Hi, Is there a good web site where I can get tips of potential modPerl problems, particularly relating to CGI? Also, I'm getting a modPerl problem with my script: I keep finding that $param{form}{type} has the wrong value in it. Any help would be greatly

Re: Mod Perl / CGI problem

2002-05-07 Thread Elwyn Chow
Hi, I forgot to ask this... In the other parts of my modPerl script, are there any other glaring errors in my programming style that I've programmed for modPerl besides the problem with that particular variable and what's the easiest way to fix them without changing my