Here is the problem: I have 5 bin files generated by c++ code, I'm developing a GUI for execute that files using php pages. I try to execute the bin file with the php function exec. When I load the page nothing appends, I want that the bin starts running local showing me the results in the shell window. calibrate is the name of the bin file.Is it possible?
<html>
<body>
<?php
exec('calibrate');
?><br>
</body>
</html>
UPDATE
I checked the PHP error log and I have a permission denied error, the problem is that I modified all the permissions with 777 (for the moment) also in the parent directory but I receive the same error. I don't know if can be useful but if I call the command whoamII read apacheI. Hoping someone can help.