I’m moving an older web application written in php 7.3 from a very old server to a new Ubuntu server. The client has no interest in upgrading the application code past 7.3.
Both old and new servers are running apache.
The application makes some soap calls to salesforce.com apis. When I make the call from the command line via “php sfTest.php”, var_dump( $result ); shows the expected results of:
However, when I run that same file in a browser, var_dump( $result ); returns:
1010The Name of Some Clienttrue
Apache is stripping the tags out of my result set so I can’t parse it. I’ve tried comparing the old server configuration with the new and I can’t spot the difference. I’ve searched this question with all the phrasing I can think of and can’t find anything helpful.