I try to do in php the following call:
system('C:\www\scripts\script.pl site makeconfig');
this system call was working before, but it does not anymore. I can executet it from the command line (without perl in front of it) and from php if I replace the call by :
system('perl C:\www\scripts\script.pl').
I would like to avoid to change them, there
are too many (system,exec,popen ...) in the code.
This is working fine from the command line (without perl in front of it).
I reinstalled ActivePerl, it didn't solve
the problem
Any idea ?