Anyone know why I can't make a system call using a perl script from an entry in a form. I'm using -T
I have a couple of x10 components I want to turn on via a form entering a certain string to activate them
if ($value =~ /SOMEVALUE/)
{
print "<H3>Value is correct</H3>";
$command = "C:\\progra~1\\homeco~1\\x10comm.exe a2 on";
exec($command);
}