I have Xdebug and it's work well in the VSCode while debugging. But in the browser when I face an error it doesn't show the errors in the "orange table" to trace the errors to solve that.
What can I do to enable that?
I also show xdebug_info() here:
It is likely that you have set the xdebug.mode
setting to just debug
, which excludes Xdebug's other features, including, the orange errors. If you want to have both these enabled, set your xdebug.mode
setting to debug,develop
, instead of just debug
.