Skip to content
Advertisement

Running shell_exec(‘which java’) in PHP return nothing

If I run

JavaScript

from the command line I get the proper input (/usr/java/…/bin/java). However if I run it in a php script:

JavaScript

nothing gets printed out for which java but I get the proper results for which ls…

Advertisement

Answer

Two things were needed:

  • the full path to the JVM (it wasn’t set in the environment)
  • ” 2>&1″ at the end of the command line.

So for example:

JavaScript
Advertisement