Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » PHP Development Tools (PDT) » XDebug - Incompatible Debug Server Version
XDebug - Incompatible Debug Server Version [message #26980] Fri, 08 June 2007 20:21 Go to next message
Eclipse UserFriend
Originally posted by: julian_eclipse.eugeniayjulian.com

I'm trying to get remote debuging with XDebug working and i'm getting this error
on Eclipse:

Incompatible Debug Server Version
Probably the remote debugger protocol does not match the expected protocol
version (2006040701)

On my win xp client I have
Eclipse 3.2.1
PDT S20070401-RC3
Example Mapper for XDebug 0.2.0 Support
Prebuilt Binary of XDebug Support V0.2.1 for PDT RC3 only


On my freebsd server i have
freebsd 4
php 5
XDebug 2.0RC4


This is what gets written on xdebug.remote_log:

Log opened at 2007-06-08 20:02:48
-> <init xmlns="urn:debugger_protocol_v1"
xmlns:xdebug="http://xdebug.org/dbgp/xdebug"
fileuri=" file:///mnt/mujeres.esp.yahoo.com/home/julianj/www/test_debu g/index.php"
language="PHP" protocol_version="1.0" appid="48534"
idekey="ECLIPSE_XDEBUG"><engine
version="2.0.0RC4"><![CDATA[Xdebug]]></engine><author><![CDATA[Derick
Rethans]]></author><url><![CDATA[http://xdebug.org]]></url><copyright><![CDATA[Copyright
(c) 2002-2007 by Derick Rethans]]></copyright></init>

-> <response xmlns="urn:debugger_protocol_v1"
xmlns:xdebug="http://xdebug.org/dbgp/xdebug" status="stopped"
reason="ok"></response>

Log closed at 2007-06-08 20:02:51


Any ideas on what to do to get past this problem?

Thanks!
Re: XDebug - Incompatible Debug Server Version [message #28236 is a reply to message #26980] Thu, 14 June 2007 11:35 Go to previous messageGo to next message
D Kelsey is currently offline D KelseyFriend
Messages: 232
Registered: July 2009
Senior Member
This problem occurs when you have the PDT Zend debugger listening on the
same port you are using for XDebug.

Make sure in the preferences page, that the xdebug port is not the same
as the port defined for the zend debugger.

Dave Kelsey


Julian Jaramillo wrote:
> I'm trying to get remote debuging with XDebug working and i'm getting
> this error on Eclipse:
>
> Incompatible Debug Server Version
> Probably the remote debugger protocol does not match the expected
> protocol version (2006040701)
>
> On my win xp client I have
> Eclipse 3.2.1
> PDT S20070401-RC3
> Example Mapper for XDebug 0.2.0 Support
> Prebuilt Binary of XDebug Support V0.2.1 for PDT RC3 only
>
>
> On my freebsd server i have
> freebsd 4
> php 5
> XDebug 2.0RC4
>
>
> This is what gets written on xdebug.remote_log:
>
> Log opened at 2007-06-08 20:02:48
> -> <init xmlns="urn:debugger_protocol_v1"
> xmlns:xdebug="http://xdebug.org/dbgp/xdebug"
> fileuri=" file:///mnt/mujeres.esp.yahoo.com/home/julianj/www/test_debu g/index.php"
> language="PHP" protocol_version="1.0" appid="48534"
> idekey="ECLIPSE_XDEBUG"><engine
> version="2.0.0RC4"><![CDATA[Xdebug]]></engine><author><![CDATA[Derick
> Rethans]]></author><url><![CDATA[http://xdebug.org]]></url><copyright><![CDATA[Copyright
> (c) 2002-2007 by Derick Rethans]]></copyright></init>
>
> -> <response xmlns="urn:debugger_protocol_v1"
> xmlns:xdebug="http://xdebug.org/dbgp/xdebug" status="stopped"
> reason="ok"></response>
>
> Log closed at 2007-06-08 20:02:51
>
>
> Any ideas on what to do to get past this problem?
>
> Thanks!
Re: XDebug - Incompatible Debug Server Version [message #28871 is a reply to message #28236] Fri, 15 June 2007 00:00 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: julian_eclipse.eugeniayjulian.com

That was exactly the problem.

Thanks a lot Dave!

Dave Kelsey wrote:
> This problem occurs when you have the PDT Zend debugger listening on the
> same port you are using for XDebug.
>
> Make sure in the preferences page, that the xdebug port is not the same
> as the port defined for the zend debugger.
>
> Dave Kelsey
>
>
> Julian Jaramillo wrote:
>> I'm trying to get remote debuging with XDebug working and i'm getting
>> this error on Eclipse:
>>
>> Incompatible Debug Server Version
>> Probably the remote debugger protocol does not match the expected
>> protocol version (2006040701)
>>
>> On my win xp client I have
>> Eclipse 3.2.1
>> PDT S20070401-RC3
>> Example Mapper for XDebug 0.2.0 Support
>> Prebuilt Binary of XDebug Support V0.2.1 for PDT RC3 only
>>
>>
>> On my freebsd server i have
>> freebsd 4
>> php 5
>> XDebug 2.0RC4
>>
>>
>> This is what gets written on xdebug.remote_log:
>>
>> Log opened at 2007-06-08 20:02:48
>> -> <init xmlns="urn:debugger_protocol_v1"
>> xmlns:xdebug="http://xdebug.org/dbgp/xdebug"
>> fileuri=" file:///mnt/mujeres.esp.yahoo.com/home/julianj/www/test_debu g/index.php"
>> language="PHP" protocol_version="1.0" appid="48534"
>> idekey="ECLIPSE_XDEBUG"><engine
>> version="2.0.0RC4"><![CDATA[Xdebug]]></engine><author><![CDATA[Derick
>> Rethans]]></author><url><![CDATA[http://xdebug.org]]></url><copyright><![CDATA[Copyright
>> (c) 2002-2007 by Derick Rethans]]></copyright></init>
>>
>> -> <response xmlns="urn:debugger_protocol_v1"
>> xmlns:xdebug="http://xdebug.org/dbgp/xdebug" status="stopped"
>> reason="ok"></response>
>>
>> Log closed at 2007-06-08 20:02:51
>>
>>
>> Any ideas on what to do to get past this problem?
>>
>> Thanks!
Re: XDebug - Incompatible Debug Server Version [message #558045 is a reply to message #26980] Thu, 09 September 2010 22:35 Go to previous message
Tim Lawrence is currently offline Tim LawrenceFriend
Messages: 1
Registered: September 2010
Junior Member
After years of using eclipse on many computers I had this problem for first time today. The suggestion below helped but xdebug and zend were using the default 9000 and 10000 ports. Problem went away when I changed them both to something else. I suspect having just installed Visual Studio 2010 for the first time that there is a conflict between them somehow.
Previous Topic:Why secure storage does not automatically login?
Next Topic:Editor extremely slow when working in large file
Goto Forum:
  


Current Time: Tue Mar 19 02:27:19 GMT 2024

Powered by FUDForum. Page generated in 0.02862 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top