Click to See Complete Forum and Search --> : perl.exe crashed? cant run .pl scripts any more


crmpicco
06-19-2006, 01:36 PM
When i go to my page i created in Perl by:

http://localhost/picco/browserCheck.pl

I get the IE error:

The page cannot be displayed
The page you are looking for is currently unavailable. The Web site might be experiencing technical difficulties, or you may need to adjust your browser settings.

--------------------------------------------------------------------------------
Cannot find server or DNS Error
Internet Explorer
================================================

Why is this? Has Perl.exe crashed? I have restarted IIS (using iisreset at Command Line). Is there a way to restart Perl.exe or something?

This is my (short) code:


#!C:/Perl/bin/perl.exe
# Simple Browser Identification

$browser = "$ENV{'HTTP_USER_AGENT'}";

print "Content-type: text/html\n\n";
print "You are using $browser to view these pages!\n";


Any ideas?

Picco