如何在HHVM 3.3.0上启用xdebug?

时间:2014-10-29 08:08:02

标签: php debugging ubuntu xdebug hhvm

我正在尝试为我的虚拟Ubuntu 14.04设置远程调试。

我在HHVM 3.3.0上启用了xdebug,将其添加到server.ini

hhvm.xdebug-not-done.enable=1
hhvm.xdebug-not-done.remote_enable=1

但它对我不起作用。我应该采取任何其他措施使其有效吗?

1 个答案:

答案 0 :(得分:6)

不再支持HHVM 3.3,但是由于HHVM 3.4,您不需要配置-not-done(是的,它稳定!)。例如

xdebug.enable=1
xdebug.remote_enable=1
xdebug.remote_connect_back=1
xdebug.idekey="PHPSTORM"
xdebug.remote_host="localhost"
xdebug.remote_port=9089

参考:HHVM Debugger Support on JetBrains Youtrack