Problem/Motivation
Print | echo commands to output to the screen no longer work in one install of devel_php. I don't think it's a bug because it's only occurring on one site (so far). I need some troubleshooting assistance.
Steps to reproduce
I discovered the problem in 8.x-1.5 which I was running, and I upgraded my install of devel_php to latest.
PHP code executes normally, errors report back to the screen, however, commands to output to screen simply do not work. None of these commands will output anything to the screen:
print "hello world!";
echo "hello world!";
\Drupal::messenger()->addMessage('hello world!');
dpm()
kint()
When I look at the page source, I see in the javascript that the commands to appear to have been executed. But NOTHING appears on the screen.
If you just click on this link:
https://www.drupal.org/files/issues/2024-11-08/script.txt β
And search ctrl-F for "hello world", you will see where they appear in the script, but not on the screen.
Proposed resolution
I am at a complete loss. No error messages anywhere.
I need some assistance troubleshooting what I could have possibly done to cause this.