Insanity Geek
Insanity Geek

Reputation: 157

Debugging using PHP 5.3.8

I used Xdebug for debugging in PHP v7. The way I did that its not working for PHP version 5.3.8.

From the https://xdebug.org/wizard.php page, when I paste phpinfo() text it shows error:

The compiler (MS VC9) that this PHP was build with, is no longer supported. Please upgrade to a version that was built with MS VC11 or MS VC14.

How to debug using PHP v5.3.8

Upvotes: 1

Views: 2349

Answers (1)

deceze
deceze

Reputation: 522636

Download an older version for the matching PHP version: https://xdebug.org/download.php.

They may not be supported anymore, but old versions continue to work as they did when they were still actively supported.

Upvotes: 4

Related Questions