PhpStorm Xdebug:等待与ide键的传入连接

时间:2016-05-12 09:47:10

标签: php phpstorm xdebug

我正在运行PHP 7.0和PhpStorm 2016.1

我安装了x-debug,这是我的配置:

enter image description here

运行Debug表单PhpStorm时,Debugger选项卡会显示以下错误消息:

  

等待使用ide键' 13136'

的传入连接

ide键每次都会变化。请帮忙。

1 个答案:

答案 0 :(得分:1)

您的问题不完整,因为它缺少xdebug的当前php设置,但看起来您没有配置idekey(您看到IDE Key被报告为“ No value “ 是因为)。只需添加:

xdebug.idekey = ....

到你的配置。这是我的设置中的工作配置:

xdebug.remote_handler="dbgp"
xdebug.remote_port=9000
xdebug.remote_autostart = on
xdebug.remote_start = on
xdebug.remote_enable = on
xdebug.remote_connect_back = on
xdebug.idekey = "xdebug"

idekey使用的值可以是您想要的任何字符串,但必须与您在PHPStorm中设置的相同(请参阅Settings / Languages / PHP / {{1 } / Debug / DBGp Proxy)。