Reputation: 101
So I have Xdebug enabled on my local version of PHP, and I'm wondering if anyone can give me an answer as to why the output isn't styled in the default way (with the orange background, table design). I can see the stack trace and everything, but it's all just text, no html wrapper around the message.
Thanks if you have any advice to give!
BTW, this is in my php.ini file:
zend_extension="C:\php\ext\php_xdebug.dll"
xdebug.show_local_vars=On
xdebug.dump.SERVER=*
xdebug.dump_globals=On
Upvotes: 10
Views: 1760
Reputation: 1002
As I have answered in duplicate question:
For Xdebug 3 you need to enable develop mode in your php.ini:
xdebug.mode= develop
Upvotes: 0