Re: regarding to create a web interface

2008-02-11 Thread Chas. Owens
On Feb 11, 2008 4:18 AM, Rajendra kumar chauhan <[EMAIL PROTECTED]> wrote: > I WANT TO CREATE A WEB INTERFACE FOR A SOFTWARE CALLED BLAT USING CGI AND I > HAVE DOWNLAODED AND INSTALLED APACHE WEB BROWSER FOR IT BUT I DONT KNOW HOW > TO GO AHEAD,PLEASE ASSIST ME > You may fi

Re: regarding to create a web interface

2008-02-11 Thread Kashif Salman
FYI Caps lock is considered impolite. On Feb 11, 2008 1:18 AM, Rajendra kumar chauhan <[EMAIL PROTECTED]> wrote: > I WANT TO CREATE A WEB INTERFACE FOR A SOFTWARE CALLED BLAT USING CGI AND I > HAVE DOWNLAODED AND INSTALLED APACHE WEB BROWSER FOR IT BUT I DONT KNOW HOW > TO GO AHEA

regarding to create a web interface

2008-02-11 Thread Rajendra kumar chauhan
I WANT TO CREATE A WEB INTERFACE FOR A SOFTWARE CALLED BLAT USING CGI AND I HAVE DOWNLAODED AND INSTALLED APACHE WEB BROWSER FOR IT BUT I DONT KNOW HOW TO GO AHEAD,PLEASE ASSIST ME

Re: Web Interface for Perl programs

2006-04-10 Thread Jay Savage
On 4/10/06, Sonika Sachdeva <[EMAIL PROTECTED]> wrote: > Hi list, > > I have written some small perl programs for the ftp to site, getting the > data n metadata, processing it and generating the status in a text file. > Now i need to have a web interface to this. > so i

Re: Web Interface for Perl programs

2006-04-10 Thread nishanth ev
Hello Sonika, > Now i need to have a web interface to this. > so i have few questions: > 1. perl - cgi or php? go for perl-cgi > 2. how do i execute the perl programs on a different > system than the web > server. If you want to run a subroutine that is located on another s

Re: Web Interface for Perl programs

2006-04-10 Thread Mr. Shawn H. Corey
On Mon, 2006-10-04 at 09:04 -0700, Sonika Sachdeva wrote: > Hi list, > > I have written some small perl programs for the ftp to site, getting the > data n metadata, processing it and generating the status in a text file. > Now i need to have a web interface to this. > so i have

Re: Web Interface for Perl programs

2006-04-10 Thread JupiterHost.Net
Sonika Sachdeva wrote: Hi list, howdy :) I have written some small perl programs for the ftp to site, getting the data n metadata, processing it and generating the status in a text file. Now i need to have a web interface to this. so i have few questions: 1. perl - cgi or php? Perl (PHP

Web Interface for Perl programs

2006-04-10 Thread Sonika Sachdeva
Hi list, I have written some small perl programs for the ftp to site, getting the data n metadata, processing it and generating the status in a text file. Now i need to have a web interface to this. so i have few questions: 1. perl - cgi or php? 2. how do i execute the perl programs on a

Re: Web Interface

2002-12-04 Thread Rob Dixon
Hi Shishir You'll need LWP::UserAgent to fetch the URL, and HTML::Treebuilder to parse it. HTH, Rob - Original Message - From: "Shishir K. Singh" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, December 03, 2002 8:26 PM Subject: Web Interface

Re: Executing DOS "copy" command from perl script via web interface

2002-09-19 Thread Tim Musson
Hey Michael, My MUA believes you used Mutt/1.3.27i to write the following on Tuesday, September 17, 2002 at 7:06:32 PM. MK> In Perl, backslashes escape the character that follows them, just MK> like in C. If you want a literal backslash, you need either "\\" MK> or '\': MK> system("com

Re: Executing DOS "copy" command from perl script via web interface

2002-09-18 Thread Michael Kelly
On Tue, Sep 17, 2002 at 08:00:06AM -0400, FlashGuy wrote: > Hi, Hi FlashGuy, > I have a web interface where I'm executing a compiled perl script. Within the perl >script I'm trying to execute a DOS command but its not working properly. > If I put my command in a batc

Re: Executing DOS "copy" command from perl script via web interface

2002-09-17 Thread Tim Musson
Hey FlashGuy, My MUA believes you used PMMail 2000 Standard (2.20.2502) For Windows 2000 (5.1.2600;1) to write the following on Tuesday, September 17, 2002 at 8:00:06 AM. F> I have a web interface where I'm executing a compiled perl script. F> Within the perl script I&

Re: Executing DOS "copy" command from perl script via web interface

2002-09-17 Thread Sudarshan Raghavan
On Tue, 17 Sep 2002, FlashGuy wrote: > > Hi, > > I have a web interface where I'm executing a compiled perl script. Within the perl >script I'm trying to execute a DOS command but its not working properly. > If I put my command in a batch file and execute the bat

Re: Executing DOS "copy" command from perl script via web interface

2002-09-17 Thread mmaunder
The file can't be found? Sounds like a DOS not a Perl problem. On Tue, Sep 17, 2002 at 08:00:06AM -0400, FlashGuy wrote: > > Hi, > > I have a web interface where I'm executing a compiled perl script. Within the perl >script I'm trying to execute a DOS comman

Executing DOS "copy" command from perl script via web interface

2002-09-17 Thread FlashGuy
Hi, I have a web interface where I'm executing a compiled perl script. Within the perl script I'm trying to execute a DOS command but its not working properly. If I put my command in a batch file and execute the batch file from the perl script it works. I know it's becaus