php – XDebug无法连接到客户端

前端之家收集整理的这篇文章主要介绍了php – XDebug无法连接到客户端前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在本地尝试使用NetBeans Mac进行调试.

这是我的PHP.ini

[xdebug]
 xdebug.default_enable=1
 xdebug.remote_enable=1
 xdebug.remote_handler=dbgp
 xdebug.remote_host=localhost
 xdebug.remote_port=9000
 xdebug.remote_autostart=1
 xdebug.remote_log="/Applications/MAMP/logs/xdebug.log"
 xdebug.idekey="netbeans-xdebug"
 zend_extension="/Applications/MAMP/bin/PHP/PHP5.4.10/lib/PHP/extensions/no-debug-non-zts-20100525/xdebug.so"

这是我在xdebug.log中得到的

I: Connecting to configured address/port: localhost:9000.
   E: Could not connect to client. :-(

我尝试将端口更改为9001并关闭防火墙,但没有帮助.

Xdebug的默认端口(9000)与FastCGI(Xdebug第一!)冲突 – 解决方案是将其更改为另一个端口.完成之后,您需要重新启动IDE,您还需要配置新端口.您还需要重新启动PHP和Web服务器.
原文链接:https://www.f2er.com/php/130316.html

猜你在找的PHP相关文章