2010-11-14 99 views
0

我不能讓netbeans 6.9和xdebug一起工作。奇怪我試過telnet用ubuntu中的netbeans進行php調試

[email protected]:~/www/nerkl$ telnet localhost 9000 
Trying ::1... 
Trying 127.0.0.1... 
telnet: Unable to connect to remote host: Connection refused 
[email protected]:~/www/nerkl$ telnet bogaz 9000 
Trying 127.0.0.1... 
telnet: Unable to connect to remote host: Connection refused 

我也找不到debugclient。

xdebug工作:我得到了日誌和漂亮的錯誤報告。

我該怎麼辦? 我只想要一個基本的步驟跟蹤。

回答

0

xdebug工作:我得到了日誌記錄和漂亮的錯誤報告。

您需要啓用遠程調試。

xdebug.ini試試這個:

[xdebug] 
xdebug.remote_autostart = 1 
xdebug.remote_enable = 1 
xdebug.remote_host = localhost 
xdebug.remote_port = 9000