We have set up Weblogic to be able to run PHP, this link was used as a guide http://archive.oreilly.com/cs/user/view/cs_msg/25690. We can successfully use PHP albeit only 5.3.9.
One thing that I am having trouble with is displaying all of PHPs errors. When PHP errors in some circumstances it just shows the server error:
Error 500--Internal Server Error
From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
10.5.1 500 Internal Server Error
The server encountered an unexpected condition which prevented it from fulfilling the request.
I have a local version of PHP (5.6.4) with the same phpinfo() outputs for display_errors => STDOUT => STDOUT
and error_reporting => 32767 => 32767
and it will output the errors.
A quick example of errors it won't display are say I get a function name wrong or mistype a language construct like echo
, I'll get the server error not the parse error: message: line
.
I've never used PHP on weblogic before, so I'm not sure of what this problem is or how to fix it?