How do I launch a program (.exe) that is located on the Server from a Web page?
Submitted by: AdministratorYou need to configure the server to recognise .exe files as cgi, then you just point your browser to the URL as normal..
Here is the answer for Apache, the most popular server on the internet.
Edit the file [srm.conf] to contain, either:
AddHandler cgi-script .exe
or:
ScriptAlias /cgi-bin/ /some/real/path/to/your/cgi_s/
In both cases, you also need to check the [access.conf] file, to make sure that CGIs are "allowed" in those directories. eg...
<Directory /some/real/path/to/your/cgi_s>
AllowOverride None
Options ExecCGI
</Directory>
The scriptalias is the prefered and safest way to do this, as it is easier to manage the access rights on the cgi-bin. That way only trusted users can publish executables, while still allowing the static content of the site to be updated by mortals that are prone to accidents.
Submitted by: Administrator
Here is the answer for Apache, the most popular server on the internet.
Edit the file [srm.conf] to contain, either:
AddHandler cgi-script .exe
or:
ScriptAlias /cgi-bin/ /some/real/path/to/your/cgi_s/
In both cases, you also need to check the [access.conf] file, to make sure that CGIs are "allowed" in those directories. eg...
<Directory /some/real/path/to/your/cgi_s>
AllowOverride None
Options ExecCGI
</Directory>
The scriptalias is the prefered and safest way to do this, as it is easier to manage the access rights on the cgi-bin. That way only trusted users can publish executables, while still allowing the static content of the site to be updated by mortals that are prone to accidents.
Submitted by: Administrator
Read Online CGI Programming Job Interview Questions And Answers
Top CGI Programming Questions
☺ | What is a CGI bin directory? |
☺ | Can I pass JavaScript variables to a CGI Perl program? |
☺ | How can I stop my CGI script reading and writing files as nobody? |
☺ | How can I run my CGI program live in a debugger? |
☺ | What do I absolutely need to know in CGI? |
Top Coding/Programming Categories
☺ | Python Interview Questions. |
☺ | OOP Interview Questions. |
☺ | Software engineering Interview Questions. |
☺ | PHP Interview Questions. |
☺ | VBA (Visual Basic for Applications) Interview Questions. |