skip to Main Content

My server is a Red Hat Enterprise Linux AS release 4 (Nahant Update 8).
I need to debug an old PHP project.
Which XDebug version supports PHP 4.3.9 (Zend Engine 1.3.0) ?
Many Thanks.

2

Answers


  1. There is no such version.

    PHP is only supported up from version 7.3, and supported versions of Xdebug are 2.9 (for PHP 7.2 and higher). PHP 4.3 has not been supported for at least 12 years, and if you’re still stuck on it, then your site is full of security holes. Not even RedHat supports this old version any more.

    All Xdebug releases are at https://github.com/xdebug/xdebug.org/tree/master/html/files, and I believe the latest that works with PHP 4.3, is Xdebug 2.0.5, but I have no means of testing that any more.

    Login or Signup to reply.
  2. What Derick said, but if you are adamant on needing/doing that, use the wayback machine and download version 1.3.2 or version 1.3.1. I actually don’t know if these versions support 4.3, but you seem desperate, so it’s your best bet.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search