[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-security] RE:CGI
- Subject: Re: [cobalt-security] RE:CGI
- From: "Gerald Waugh" <gerald@xxxxxxxxx>
- Date: Sat, 29 Apr 2000 16:32:33 -0400
Frank Cubillos <cubillos@xxxxxxxxxxxxxxxxxx>
On: Saturday, April 29, 2000 9:03 PM
> Thanks for the help Gerald, a bit more info if I can. So from what I
> understand I can set up a cgi script, where do I refer the path of the
> script? Sorry for the ignorance, too many years with Unix
> Thanks for your patience!
> Frank
Since cgi-wrap allows you to place the script in any directiory,
you merely name the file as an example this form declaration;
<form method=POST action="mycgi.pl"> <!-- prviding the file is in the same
directory as the form. -->
or if you created a cgi-bin directory, (I still do as I can't break the habit?)
<form method=POST action="../cgi-bin/mycgi.pl">
I hope this helps!