DOCUMENT:Q150629 20-FEB-2002 [iis] TITLE :Configuring and Testing a PERL Script with IIS PRODUCT :Internet Information Server PROD/VER::1.0,2.0,3.0 OPER/SYS: KEYWORDS: ====================================================================== ------------------------------------------------------------------------------- The information in this article applies to: - Microsoft Internet Information Server versions 1.0, 2.0, 3.0 ------------------------------------------------------------------------------- SUMMARY ======= The following PERL script can be used to test for the proper installation and execution of CGI scripts with Internet Information server. MORE INFORMATION ================ Create a file with Notepad, and type the following lines of code. Save the file in the scripts directory as Helloworld.pl. print "HTTP/1.0 200 OK\n"; print "Content-Type: text/html\n\n"; print "\n"; print "\n"; print "Hello World\n"; print "\n"; print "\n"; print "

Hello World

\n"; print "

\n"; print "Your IP Address is $ENV{REMOTE_ADDR}.\n"; print "

"; print "

Have a nice day
\n"; print "\n"; print "\n"; Once you have created the file, you need to configure PERL to run securely with Internet Information. Perl.exe should not be located in any of the directories accessible by a user with a browser. With a script mapping in the registry, you can place the Perl.exe outside of the normal directory structure a user has access to. To configure PERL script mapping -------------------------------- WARNING: Using Registry Editor incorrectly can cause serious, system-wide problems that may require you to reinstall Windows NT to correct them. Microsoft cannot guarantee that any problems resulting from the use of Registry Editor can be solved. Use this tool at your own risk. 1. Start Regedt32.exe and open the following registry key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W3SVC \Parameters\ScriptMap 2. Click Add Value from the Edit menu. 3. The Value Name is .pl 4. The Data type is REG_SZ. 5. The String value is \perl.exe %s %s NOTE: The "%s %s" is case sensitive. (e.g. "%S %S" will not work). 6. Restart the WWW service. Now that the registry has been configured, you can test the PERL script with your browser. Using the defaults directory structure with IIS, the URL would be the following: http:///scripts/helloworld.pl? Additional query words: CGI PERL ====================================================================== Keywords : Technology : kbiisSearch kbiis300 kbiis200 kbiis100 Version : :1.0,2.0,3.0 Hardware : ALPHA x86 Issue type : kbinfo ============================================================================= THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY. Copyright Microsoft Corporation 2002.