C
CoralBanded
I am trying to run a command from a web page using perl. The server
is Win XP pro and Apache. I can run the command fine from the
command line, but it is not making it from perl. Is this a
permissions issue? (how could I enable it)
$command = "c:\\Progra~1\\HomeCo~1\\x10com32.exe";
@args = ($command, "a4", "off");
system(@args);
I can type
c:\Progra~1\HomeCo~1\x10com32.exe a4 off
at the command line and it works fine, trying to get this command from
a web page.
I am getting through to windows cause this will work:
system("dir e:\\www");
any ideas
thanks,
is Win XP pro and Apache. I can run the command fine from the
command line, but it is not making it from perl. Is this a
permissions issue? (how could I enable it)
$command = "c:\\Progra~1\\HomeCo~1\\x10com32.exe";
@args = ($command, "a4", "off");
system(@args);
I can type
c:\Progra~1\HomeCo~1\x10com32.exe a4 off
at the command line and it works fine, trying to get this command from
a web page.
I am getting through to windows cause this will work:
system("dir e:\\www");
any ideas
thanks,