Re: running CGI locally??

2004-03-05 Thread WC -Sx- Jones
Freimuth,Robert wrote: Since I'm trying to generate dynamic HTML pages, I thought CGI would be the way to go. However, from what I understand of CGI, it requires a web server and can't be run locally. Since all of my code is in perl, I would prefer to stick with it, if possible. A coworker sugg

RE: running CGI locally??

2004-03-05 Thread Bob Showalter
Freimuth,Robert wrote: > Hello, > ... I would like to build a simple > browser-based UI ... That's good. You'll need a web server of some sort, since that's what browsers talk to. > > Since I'm trying to generate dynamic HTML pages, I thought CGI would > be the way to go. However, from what I

Perl Script to detect a file upload

2004-03-05 Thread Ash Singh
Hi, please could anyone help me with information regarding a file upload, when the user uploads a file on my server, I need a perl script to automatically detect the new file uploaded and kick off a series of task, the upload is done in an asp platform and it's a NT server.   Thanking you

Re: running CGI locally??

2004-03-05 Thread Teresa Raymond
Just wondering what URLs you might have for these: There are web servers written in Perl alsoo =) --Teresa -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Perl Script to detect a file upload

2004-03-05 Thread Teresa Raymond
Hi Ash, You can put log entry code into your file upload script and email code to notify you -- or write separate modules that your upload script calls thru use or require. If you mean that people are uploading onto your server without your upload script, then I don't know what you should do but

RE: running CGI locally??

2004-03-05 Thread Freimuth,Robert
> > ... I would like to build a simple > > browser-based UI ... > > That's good. You'll need a web server of some sort, since that's what > browsers talk to. > > > > > Since I'm trying to generate dynamic HTML pages, I thought CGI would > > be the way to go. However, from what I understand of

Re: running CGI locally??

2004-03-05 Thread WC -Sx- Jones
Teresa Raymond wrote: Just wondering what URLs you might have for these: There are web servers written in Perl alsoo =) http://www.earth.com/server/doc/plexus.html http://sites.inka.de/sites/bigred/sw/tinyhttpd.html Plus there are CPAN Modules to help contruct your own server. -Bill- __Sx_

RE: running CGI locally??

2004-03-05 Thread Bob Showalter
Freimuth,Robert wrote: > > > ... I would like to build a simple > > > browser-based UI ... > > > > That's good. You'll need a web server of some sort, since that's > > what browsers talk to. > > > > > > > > Since I'm trying to generate dynamic HTML pages, I thought CGI > > > would be the way t

Problem using hidden variables

2004-03-05 Thread Kasturirangan Rangaswamy
Hi, I have a perl program that has an include directive calling another Perl program in it. The structure is somewhat as follows first.pl -- #!/usr/local/bin/perl require "second.pl" $q = new CGI; print $q->hidden(-name='first', value='1'); second($q); End of first.pl s