I have a simple script that I can't get to work on NT, it works fine on Linux, and Unix. Any idea why? The file exists in the same directory as the script, permissions are set to full-access, but it will not open the file.
print "Content-type: text/html\n\n";
open CONF_VIP, "VIP.txt"
or die "Can't open config.txt. $!\n";
$vip = <CONF_VIP>;
print "VIP is $vip\n";