xdebug-等待与ide键的传入连接

时间:2014-09-12 06:05:20

标签: php xdebug

我正在使用xDebug。但我无法调试整个项目。我可以调试启动URL页面断点。但当我跨过线路时,它显示登录页面,当我提交登录页面时,我无法到达下一个断点。在变量窗口中显示"等待与ide键的传入连接''。我为xdebug配置了php.ini:

[XDebug]
    zend_extension="/usr/lib/php5/20121212+lfs/xdebug.so"
    xdebug.remote_enable=1
    xdebug.remote_port="9001"
    xdebug.profiler_enable=1
    xdebug.profiler_output_dir="home/tmp"

请帮忙。

3 个答案:

答案 0 :(得分:0)

也许你可以在php.ini中添加一行:

xdebug.remote_connect_back=1

我希望这种方法对你有所帮助。

答案 1 :(得分:0)

你应该设置phpstorm的DBG代理 enter image description here

请参阅:refer link

答案 2 :(得分:0)

因为Xdebug需要Cookie AppRoutingModule或网址XDEBUG_SESSION中的查询字符串,且值为XDEBUG_SESSION_START的值。

您可能会从登录页面错过这两个。

参考:https://xdebug.org/docs/remote,搜索Waiting for incoming connection with ide key