Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Trying to get Rebol CGI working on my website

From: yeksoon::myrealbox::com at: 17-Mar-2003 21:01

At 05:45 AM 17-03-03 -0600, you wrote: Does anyone know how to "encourage" IIS to run additional cgi scripts through an added in scripting exe? I have not use IIS for a long time. But here is a wild guess. Windows generally uses the registry for mapping to extension. Try looking for something as follows under "regedit": HKEY_LOCAL_MACHINE System CurrentControlSet Services W3Svc Parameters Script_Map Once there you wantto EDIT --> New --> String Value to add a new extension association of ".cgi" Then MODIFY the new ".cgi" entry to associated it with the rebol executable, eg "C:\rebol\rebol.exe %s %s" Here "C:\rebol\" may be different on your system and note that you must end with .exe. Now restart the computer to get the new setting. After that any script in a directory that the server sees as EXECUTABLE (eg, the default "scripts" directory) which ends in *.cgi will be sent to the rebol interpreter. Best YekSoon, keeping my fingers crossed.