You are not logged in.
I installed xdebug with pecl install xdebug.
I can't get xdebug to show colored output.
phpinfo() shows xdebug is enabled.
Here's my php.ini relevant portion:
zend_extension="/usr/lib/php/modules/xdebug.so"
xdebug.remote_enable = 1
xdebug.remote_host = localhost
xdebug.remote_port = 9000
xdebug.remote_handler = "dbgp"
xdebug.collect_includes = On
xdebug.collect_params = On
xdebug.collect_return = On
xdebug.collect_vars = On
xdebug.dump_globals = On
xdebug.show_local_vars = On
xdebug.dump.GET=*
xdebug.dump.POST=*
xdebug.dump.COOKIE=*
xdebug.dump.ENV=*
xdebug.dump.FILES=*
xdebug.dump.REQUEST=*
xdebug.dump.SERVER=*
xdebug.dump.SESSION=*Thanks in advance for any replays.
SOLVED: Reading xdebug faq:
Q: Xdebug doesn't format output.
A: Make sure you have PHP's html_errors set to 1 in php.ini
php.ini had a line html_errors = Off. I just set it to 1
Last edited by Athunye (2010-06-12 15:13:18)
Offline