2

我已经在 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 上),我认为配置似乎是正确的。那么会是什么问题呢?

如果您想了解有关配置的更多信息,请告诉我。

任何帮助,将不胜感激。

提前致谢。

4

1 回答 1

0

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

于 2015-03-11T14:26:41.017 回答