accessing CGI params from an included script

2002-03-21 Thread David R. Baird
I have an html template file, /path/to/htdocs/file.html and I slip in a cgi script using SSI: The file executes fine, but how can my cgi script access any parameters being sent to the file, e.g. /path/to/htdocs/file.html?name1=val1 I'm running Apache/mod_perl on Win 98. Thanks, David

RE: accessing CGI params from an included script

2002-03-21 Thread David R. Baird
> http://httpd.apache.org/docs/mod/mod_include.html > > has information on this. To keep it with an include virtual you would have > to echo back the parameters (which are stored in QUERY_STRING), or you could > use exec instead of include. > > Tim > > > -Original Message--

POSTing to a .html URL

2002-04-04 Thread David R. Baird
I have cgi script that is INCLUDEd in a web page: page.html: The script prints out a form. When the form's method attribute is GET ie , it works fine, but I want to process a password, so I need to POST to page.html When I do, I get a 405 error: The requested method POST is not allowed

Re: POSTing to a .html URL

2002-04-06 Thread David R. Baird
ve permissions to write .htaccess Apache configuration files on the production server, but it doesn't run mod_perl. David. On 4 Apr 2002, at 12:55, Michael Kelly wrote: > On 4/4/02 9:16 AM, David R. Baird <[EMAIL PROTECTED]> wrote: > > Hi David, > > > I hav