Hi. I have problems with executing external programms in php with exec() and system(). When i am trying to execute some shell commands eg system('ls'), exec('whoami') there is no problem
, with my binaries (the simplest hello world program in c++) - no problem. But programms, which i've installed(./configure make make install) before, don't work.' For example i've installed cvs. When i want to open page
<?php
system('cvs');
?>
I'am getting blank page. I was trying to give whole path system('/usr/local/bin/cvs') it doesn't work.
My environment:
Suse Linux
PHP Version 4.3.4
Apache
safe_mode = Off