Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Configuring IIS 6.0 to execute cgi(.exe)

Tags:

iis

cgi

iis-6

I already create a virtual directory (cgi-bin) with permission : Scripts and Executable... When I test : http://localhost/cgi-bin/mapserv.exe, I got 404 error, The page cannot be found

Am I supposed to Add a EXTENSION mapping to .exe files ? Which executable ?

Thanks!

like image 470
Paul Avatar asked May 28 '09 17:05

Paul


2 Answers

I solved that:

Go to Web Service Extensions in the IIS service manager Select Add a new web service extension. On the required files tab, add C:\YourMapserverInstalldir\mapserv.exe Set it to allow

Thanks anyway...

like image 187
Paul Avatar answered Nov 15 '22 13:11

Paul


Yes, you will have to create an application mapping between the file name extension of your script and the script interpreter. Check out this link.

Installing CGI Applications in IIS 6.0

like image 34
Phaedrus Avatar answered Nov 15 '22 13:11

Phaedrus