让 xdebug 与 netbeans 对话(从虚拟框)

让 xdebug 与 netbeans 对话(从虚拟框)

尝试让 xdebug 与 netbeans 对话(反之亦然)。

xdebug 在 vi​​rtualbox 设置中流浪汉(以及一些基本的 puppet 来设置基本的 LAMP)。根据 VM 中的 php.ini,一切都按我缩进的方式设置。

xdebug.default_enable=1
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_host=33.33.33.1
xdebug.remote_port=9000
xdebug.remote_autostart=0

不幸的是,netbeans 调试器似乎无法与 xdebug 对话。

有想法吗?

答案1

  1. 使用 phpinfo() 检查 xdb 是否安装在虚拟机上
  2. Xdebug.remote_host 应该是虚拟机的 ip 地址

一旦一切正常,您可以使用“Xdebug helper”chrome 扩展或“easy xdebug”firefox 扩展在调试模式下打开页面

相关内容