I had this exact same problem. Try adding:
php_value short_open_tag 1
to your web server config or .htaccess in this dir. Short tags have been deprecated in later php version.
php_value short_open_tag 1
to your web server config or .htaccess in this dir. Short tags have been deprecated in later php version.
The fact that your test and production environments differ is not encouraging. How do you know what you're testing will work if the environments aren't as identical as possible?
But then it is good to find issues where it works in one scenario and not another to iron out all the bugs, so that you know you can comfortably deploy the software without having to worry about it only working in a clinical environment.
In this case, I have learned something new.
Comment