我无法让 XDebug 在 Windows 7 机器上与 PhpStorm 和 Vagrant 一起工作。我已经按照每个教程进行操作,但没有运气。
所以我尝试的是:
- PhpStorm 总是监听调试连接
- xdebug.ini 文件包含以下内容:
zend_extension = "..../xdebug.so"
xdebug.remote_enable= 1
xdebug.remote_handler=dbgp
xdebug.remote_host= 33.33.33.10
xdebug.remote_port= 9000
xdebug.remote_connect_back= 1
xdebug.remote_autostart= 1
xdebug.remote_log = "...."
- 设置 PhpStorm 以连接到
localhost:8080
和33.33.33.10
,都没有运气。 - 日志文件始终输出:
I: Checking remote connect back address.
W: Remote address not found, connecting to configured address/port: 33.33.33.10:9000. :-|
E: Could not connect to client. :-(
- 当我尝试调试时,防火墙(ESET Smart Security)总是关闭
- 设置路径映射,也不起作用
我只是不知道该怎么做,但我真的需要能够调试。
谢谢你的帮助!