简体   繁体   English

如何在HHVM 3.3.0上启用xdebug?

[英]How to enable xdebug on HHVM 3.3.0?

I'm trying to setup remote debugging for my virtual Ubuntu 14.04. 我正在尝试为我的虚拟Ubuntu 14.04设置远程调试。

I've enabled xdebug on my HHVM 3.3.0 by adding this to the server.ini : 我已经在我的HHVM 3.3.0上启用了xdebug,将其添加到server.ini

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

But it doesn't work for me. 但它对我不起作用。 Should I perform any other moves to make it work? 我应该执行任何其他动作才能使其正常工作吗?

HHVM 3.3 is no longer supported, however since HHVM 3.4 you don't need the -not-done in your configuration (Yes, It's stable!). 不再支持HHVM 3.3,但是从HHVM 3.4开始,您不需要在配置中使用-not-done (是的,它是稳定的!)。 For example 例如

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

Ref: HHVM Debugger Support on JetBrains Youtrack 参考: JetBrains Youtrack上的HHVM调试器支持

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM