Xdebug başarıyla müşterilerine DBGP bağlanır, ancak kesme noktaları durmayacak

0 Cevap php

I Xdebug 2.1 yüklü, ve PHP 5.2.13 ile çalışıyor. Bu başarıyla birden fazla DBGP müşterilerine bağlanmak (yani xdebug.remote_log iletişim ileri ve geri gösterir ve müşteriler kendilerini de gelen bağlantıyı gösterir), ama o kırılma noktalarını durmuyor. I NetBeans, MacGDBp ve ayrıca komut satırı debugclient Xdebug ile birlikte çalıştık.

: Tipik bir değişimi gibi görünüyor

Log opened at 2010-07-20 09:33:17
-> <init xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" fileuri="file:///mnt/hgfs/htdocs/mycompany/index.php" language="PHP" protocol_version="1.0" appid="14371" idekey="macgdbp"><engine version="2.1.0"><![CDATA[Xdebug]]></engine><author><![CDATA[Derick Rethans]]></author><url><![CDATA[http://xdebug.org]]></url><copyright><![CDATA[Copyright (c) 2002-2010 by Derick Rethans]]></copyright></init>

<- status -i macgdbp
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="status" transaction_id="macgdbp" status="starting" reason="ok"></response>

<- step_into -i macgdbp
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="step_into" transaction_id="macgdbp" status="stopping" reason="ok"></response>

<- status -i macgdbp
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="status" transaction_id="macgdbp" status="stopping" reason="ok"></response>

Log closed at 2010-07-20 09:33:18

NetBeans kesme noktası ayarlamak için çalışır, ve bu Xdebug tarafından kabul edilir:

<- breakpoint_set -i 7 -t line -s enabled -f file:///mnt/hgfs/htdocs/mycompany/index.php -n 9
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="breakpoint_set" transaction_id="7" state="enabled" id="139360004"></response>

Ancak, Xdebug hala durdurmak reddediyor!

0 Cevap