Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why is my xdebug not styled?

Tags:

php

xdebug

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
like image 787
Jim Avatar asked Apr 11 '11 01:04

Jim


1 Answers

Make sure to have :

html_errors = On

set in php.ini

like image 170
Giso Stallenberg Avatar answered Sep 16 '22 19:09

Giso Stallenberg