Hi!
Im developing a PHP script which will run with
Apache. In this script i use the command
system("make"); which will execute instructions
of a Makefile.
The system call executes without any problem. The problem is that some instructions in the Makefile do not run because the make cannot find its PATH. I have exported $PATH to include
the path to those instructions with the user root and with the user wwwrun, but that still does not work.
Do i have to configure the httpd.conf ? How?
Do i have to include any instruction before
the system call in order to PHP find the bin's in a new PATH ? HOW?
Thanks