Xdebug is an Open Source PHP extension for code debugging and profiling. Installation is straightforward and it will provide you with a wealth of information about your code, without being intrusive. One of the great features of Xdebug is, since it runs as an extension, there is no need to actually alter your code.
To read more and get the installation process, plz visit the following link:
reference: http://www.phpdeveloper.org/Â Â Â Â Â Â Â Â Â Â Author: Matt
Hi,
Can you tell me how to install xdebug2.0 in xampp for windows
Thanks
saidur
web Developer
ECBB Bangaldesh Limited
Hi saidur
can u please check this settings:
Edit your php.ini setting like this way.This is for xdebug 2.0
[Zend]
zend_extension_ts=”c:/xampp/php/ext/php_xdebug.dll”
xdebug.remote_enable=on
zend_extension=”c:/xampp/php/ext/php_xdebug.dll”
xdebug.remote_enable=on
xdebug.remote_host=localhost
xdebug.remote_port=9002
xdebug.profiler_enable_trigger=on
xdebug.profiler_output_dir=”c:/xampp/php/xdebugOutput”
xdebug.profiler_output_name=”timestamp”
[debugger]
debugger.enabled=”on”
Hope this will work for you