Getting incompatible debugger version error in eclipse PHP

Obtaining an incompatible version of the debugger The version of the remote debugger may not match the expected version of the protocol (2006040705). Show error pop up after each specific time

I use

Eclipse for PHP Developers

Version: Helios Service Release 1 Build ID: 20100917-0705

+8
eclipse php
source share
4 answers

This seems to be a bug in the Eclipse PDT and according to this report: Error 271071 - “Incompatible version of the debugger”, when it is not debugged , the error seems to be fixed when you close ALL projects in the workspace and then open it again depending on what you need.

Personally, I solved this by changing the debug ports in "Preferences → PHP → Debugging → Installed Debuggers", with these values:

Zend Debugger (30000)

XDebug (19000)

What works for me, maybe you need to try other ports.

Hi

+16
source share

I have the same problem and the reason is related to the bittorrent / utorrent browser toolbar. You must remove the toolbar and restart the browsers to fix it.

+7
source share

Changing the default ports of ZendDebugger and XDebug helps.

+1
source share

just close all running applications and codes and run the application again. It will work fine.

0
source share

Source: https://habr.com/ru/post/650516/


All Articles