Re: [EMAIL PROTECTED] How to invoke CGI program without using its file extension?

2006-10-06 Thread Joshua Slive
On 10/6/06, Rafael del Aguila <[EMAIL PROTECTED]> wrote: I were not using this options in Apache 1.3, perhaps the default behaviour are diferent in both releases. No. More likely you had these options set elsewhere in your config and they were inherited into this directory. Joshua. ---

Re: [EMAIL PROTECTED] How to invoke CGI program without using its file extension?

2006-10-06 Thread Rafael del Aguila
Ok, I get it! In Apache2 config file I need to add in the cgi-bin Directory section the following directives: Options MultiViews AddHandler cgi-script exe With these directives I can run a cgi program (.exe) without using its file extension. I were not using this options in Apache 1.3, perhaps

Re: [EMAIL PROTECTED] How to invoke CGI program without using its file extension?

2006-10-05 Thread Joshua Slive
On 10/5/06, Rafael del Aguila <[EMAIL PROTECTED]> wrote: Hi, I'd like to know how can Apache2 run a cgi program without using its file extension. In my Apache 1.3 (on Windows 2K) I can use http://my.server.com/cgi-bin/program.exe?Parameter=Value. or http://my.server.com/cgi-bin/program?Par

Re: [EMAIL PROTECTED] How to invoke CGI program without using its file extension?

2006-10-05 Thread Steve Swift
If you want to run a cgi program without using its extension you should look into using the ScriptAlias or ScriptAliasMatch directives.On 05/10/06, Rafael del Aguila <[EMAIL PROTECTED]> wrote: Hi, I'd like to know how can Apache2 run a cgi program without using its file extension. In my Apach

[EMAIL PROTECTED] How to invoke CGI program without using its file extension?

2006-10-05 Thread Rafael del Aguila
Hi, I'd like to know how can Apache2 run a cgi program without using its file extension. In my Apache 1.3 (on Windows 2K) I can use http://my.server.com/cgi-bin/program.exe?Parameter=Value. orhttp://my.server.com/cgi-bin/program?Parameter=Value.. to execute a .exe cgi program, and bot