Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

php exec and shell_exec not working

Tags:

shell

php

exec

I want to run an exe file on my server and return the output to the browser screen. The exe file takes a input file and then returns data on the screen.

Why is this code not working?

$output = shell_exec('myprogram < INP.DAT');
echo "<pre>" . var_export($output, TRUE) ."</pre>\\n";

It displays "NULL" on the browser screen. I have also tried exec(). There it returns "Array()".

like image 864
chris Avatar asked Dec 29 '22 20:12

chris


1 Answers

One of the comments on the shell_exec manual page says:

Beware of the following inconsistency: shell_exec() and the backtick operator will not return a string if the command's output is empty -- they'll return NULL instead.

This will make strict comparisons to '' return false.


It may be disabled if PHP is in safe mode.

shell_exec() (functional equivalent of backticks)
This function is disabled when PHP is running in safe mode.

exec()
You can only execute executables within the safe_mode_exec_dir. For practical reasons it's currently not allowed to have .. components in the path to the executable. escapeshellcmd() is executed on the argument of this function.

You can check your server's PHP settings with the phpinfo() function.

like image 138
John Kugelman Avatar answered Jan 05 '23 13:01

John Kugelman