ran
Code: Select all
<?php
system("./texteffect -h",$return);
echo $return;//126
?>
I then set chmod to 755, and ran the above script, which now returns a 0 and takes longer to process."NOTE: File permissions higher than 775 will not work - "775" should be the highest. "777" specifically will not work - will result in an Internal Server Error - you should use 755 instead."
I also tried exec("./texteffect -h", $output, $return); and got same results both times.
Any thoughts are much appreciated.