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 on

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 be

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 r

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 p

Re: CGI problem, please help

2003-09-10 Thread drieux
On Wednesday, Sep 10, 2003, at 07:52 US/Pacific, [EMAIL PROTECTED] wrote: [..] The point is if I comment the line 'use IO::Socket;' both programs work fine. If I use this statement - 'server.pl' fails to work with PID. [..] the is a big difference between 'server.pl' and '/usr/sites/test/vcgi/ser

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 = ; close PID; if(defined $pid){ if($pid==0){ print "Location: http://tes

Re: cgi problem

2003-06-11 Thread Kristofer Hoch
Mark, Please give us some code. Since "There is more than one way to do it" (TIMTOWTDI) I have no idea how you are 'calling' a program in the cgi-bin directory. Thanks Kristofer P.S. If you coult post the 'program' as well that'd be nice. --- mark sony <[EMAIL PROTECTED]> wrote: > Hi > I h

cgi problem

2003-06-11 Thread mark sony
Hi I have a basic question While using the ordinary guestbook pogram it is running fine but the moment I am trying to call a program in the cgi-bin directory it gives : The POST method is not valid for this URL What is the reason ? What is the way of accepting user input from html page and using

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:>### z:>#!

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=

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 le

CGI problem

2002-10-02 Thread Yahaya Mohammed
   Note: forwarded message attached.Do you Yahoo!? New DSL Internet Access from SBC & Yahoo!--- Begin Message --- 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 di

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 lo

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 apprecia