调试器不使用netbeans + wampserver

时间:2012-12-07 05:17:32

标签: php netbeans windows-7 wamp xdebug

我已经在wamp + netbeans中配置了xdebug。它正确安装并在phpinfo()中显示xdebug配置信息。但是我仍然无法使用它来调试我的应用程序。

有时会显示waiting for connection错误。有时它没有显示它,但也没有在给定断点处停止。

Following is my configuration :

PHP Version 5.3.9

PHP Extension Build API20090626, TS, VC9

In D:\wamp\bin\php\php5.3.9\ext\php_xdebug-2.2.1-5.3-vc9.dll

xdebug version: (in phpinfo)
Version     2.2.1
IDE Key     netbeans-xdebug

In php.ini file

[xdebug]

zend_extension = "D:/wamp/php/ext/php_xdebug-2.2.1-5.3-vc9.dll"

xdebug.profiler_output_dir = "D:/wamp/tmp/xdebug"
xdebug.profiler_output_name = "cachegrind.out.%p"
xdebug.profiler_enable = 0
xdebug.profiler_append = 0
xdebug.extended_info = 1
xdebug.remote_enable = 1
xdebug.remote_handler = dbgp
xdebug.remote_mode = req
xdebug.remote_host = 127.0.0.1
xdebug.remote_port = 9000
xdebug.idekey = xdebug
xdebug.remote_log = "D:/wamp/tmp/xdebug/xdebug_remot.log"
xdebug.show_exception_trace = 0
xdebug.show_local_vars = 9
xdebug.show_mem_delta = 0
xdebug.trace_format = 0

我几乎遵循谷歌上的所有教程(也在stackoverflow上),我认为配置似乎是正确的。那么问题是什么呢?

如果您想了解有关配置的更多信息,请与我们联系。

任何帮助都将不胜感激。

提前致谢。

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题waiting for connection但是我找到了一个非常好的一步一步的教程here解决了我的问题。
希望这个链接也对你有所帮助。