Some of the code I’m working with uses PHP 5.2.6, which is very old and I’m not sure if it’s possible to get Xdebug working alongside it.
I have updated my php.ini file as follows:
zend_extension="C:php_serverphpextphp_xdebug.dll"
xdebug.remote_enable = 1
xdebug.remote_handler = dbgp
xdebug.remote_host = 127.0.0.1
xdebug.remote_port = 9000
xdebug.remote_mode = req
This is what I could find online as far as documentation goes. I’ve dropped the earliest listed release on their historical releases page. Tried just about everything to get this to work, but still struggling. Is it just a case of my PHP version being too old?