Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Incompatible debugger version - error 2006040705

how to get rid of the following Incompatible debugger version error :

php.ini setting :

xdebug.remote_enable=true
xdebug.remote_host=localhost
xdebug.remote_port=10000
xdebug.remote_handler=dbgp
xdebug.profiler_enable=1
xdebug.profiler_output_dir="C:\xampp\tmp"

enter image description here

like image 410
Gainster Avatar asked May 11 '11 08:05

Gainster


2 Answers

Check this at below link this help in my case too.

Click here It seems to be a bug in Eclipse PDT and according to this report: Bug 271071 - "Incompatible debugger version" when not debugging, the bug seems to fix itself when you close ALL projects in the workspace and then reopen whichever you need.

Personally I have solved it by changing the debug ports in "Preferences -> PHP -> Debug -> Installed Debuggers", with these values:

Zend Debugger (30000)

XDebug (19000)

That Works for me, maybe you have to try another ports.

like image 129
Kundan Atre Avatar answered Nov 16 '22 12:11

Kundan Atre


I found the answer, port were miss matching b/w php.ini and eclipse.

like image 2
Gainster Avatar answered Nov 16 '22 12:11

Gainster