PHP/Java Bridge Error

503 views Asked by At

I am trying to connect the PHP with Java with the PHP/Java Bridge library. But I am facing an error as given below.

Please check below screenshot.

enter image description here

1

There are 1 answers

0
Sébastien Vanvelthem On

By default, the phpjavabridge servlet try to connect to a php-cgi daemon. It can be easily fixed, either by starting one of the bundled php-cgi (found in WEB_INF/cgi, follow the error message) or modify the configuration in the web.xml (see an example here) to provide your system php-cgi path. Repackage and redeploy your war file.

That said, if you want to use Java from PHP (and not PHP from Java), you don't need a php-cgi daemon. My recommendation, have a look to the following project: http://docs.soluble.io/soluble-japha/. This is a reworked version focusing on PHP -> Java integration.

Feel free to open issues on https://github.com/belgattitude/soluble-japha