0

我已经做了几乎所有事情来解决这个问题。. .但是等待连接的消息仍然存在。. . . . 有什么办法可以调试这个问题。我正在使用 xampp 服务器。操作系统窗口

[XDebug]
zend_extension = "C:\Users\arslan\Desktop\xampp-win32-1.8.1-VC9\xampp\php\ext\php_xdebug-2.2.3-5.4-        vc9.dll"
xdebug.remote_autostart=off 
xdebug.remote_enable=1
xdebug.remote_handler="dbgp"
xdebug.remote_mode=req 
xdebug.remote_host=localhost
xdebug.remote_port=9001

我也用 zend 和 xdebug 尝试了 ecllipse。连接问题继续存在。我已经浏览过stackoverflow 和netbean 论坛。我已经浪费了一整天的时间来找出解决方案,但失败了。

4

2 回答 2

1

库文件真的存在吗?

将端口 9001 更改为 9000,重新启动 apache 并重试。

于 2013-09-22T17:42:38.073 回答
0

有效。实际上我在更改 php.ini 后并没有重新启动 apache。

工作 php.ini

[XDebug]
zend_extension= "C:\Users\arslan\Desktop\xampp-win32-1.8.1-VC9\xampp\php\ext\php_xdebug.dll" 
xdebug.remote_enable=on
xdebug.remote_handler=dbgp
xdebug.remote_host="localhost"
xdebug.remote_port=9001
xdebug.remote_autostart=1

操作系统窗口

Xampp

php 5.4

NetBeans 7.3.1

于 2013-09-22T18:03:38.633 回答