It looks like you're hitting the maximum memory limit: Java is asking for around 2.5mb and cannot get it. Strange it's not that much, but most probably doens't include the JRE image itself so it will be much more.
Check and/or rise the PHP memory limit (/etc/php.ini), something like :
memory_limit = 128M
Depending on the configuration you could do it also in the .php itself:
ini_set('memory_limit', '128M');
In case posting the /tmp/hs_err_pid14930.log the error is refeering to would be very helpful aswell!
manpreet
Best Answer
2 years ago
I wrote a simple PHP file which calls a java application.
It runs on cli without problems but I can't run it on browser.
Output:
How can I fix it?