Hi,
I tried all the sugestions, non of them work out.
It not only impossible to get output from the exec function.
The external program I’m using translates pdf to text, and writes the text to a file with the following code from the command line:
“M:\gs\gs8.00\lib\ps2ascii M:\gs\gs8.00\lib\a.pdf M:\gs\gs8.00\lib\a.txt” (called from the lib directory)
This works fine. However with exec it writes an empty text file, when using the following code:
from exec:
”exec('M:\gs\gs8.00\lib\ps2ascii M:\gs\gs8.00\lib\a.pdf M:\gs\gs8.00\lib\a'.txt,$resultArray,$rv);” (called from my web-directory)
What can it be?
Charles.