in reply to Re^2: Problems with qx
in thread Problems with qx

It must be in the PATH environment var of your webserver. And your webserver user must have permission to execute the file. Try to type the full path before the command.
Boris

Replies are listed 'Best First'.
Re^4: Problems with qx
by SmokeyB (Scribe) on Oct 15, 2004 at 16:27 UTC
    I've tried using the full path, it still won't execute. I guess it must be a windows permission setting.
      ask perl, why it can not execoue the file:
      system("your prog") == 0 or die "system failed: $?";
      then look into your error log, what error you get. Fix it and replace the system call with qx again.
      Boris