Forum Moderators: coopster
$pipe = popen("htmSaveDb.pl '$fullpath' ", "r");
$return = fgets($pipe,1024);
pclose($pipe);
The problem is the perl script never seems to actually run. When I check my Apache error log I have the error:
Access is denied
When I try to run the script it looks like a command prompt box briefly opens and then closes immeadiately. The first command in the perl script is a return statement so it should only be returning a string value into the $return variable. The problem is this script runs correctly on at least 4 computers and only one computer throws this error.
Any suggestions for what might need to be changed on the computer to get it running? The only difference between it and the other computers that I know of is it has a higher security level.
Thanks,
Tim
you could also try to execute it with exec(), but i have no idea whether that would make a difference (actually my guess is that it won't)