xdebug.remote_autostart 设置为 1 导致 504 错误
为了解决页面请求时不使用 cookie 导致不触发 xdebug,将 xdebug.remote_autostart 设置为 1,却导致所有请求卡死的问题,可以考虑以下配置:
在请求中添加指定 xdebug 启动的参数,无论是否设置 cookie。以下两种方法均可:
- 通过 get 或 post 参数添加 xdebug_session_start:
-h 'x-debug-session-start: 1'
登录后复制
- 在 url 中添加查询参数:
?XDEBUG_SESSION_START=1
登录后复制
如此一来,在没有断点时,页面请求可以正常流畅地执行。当存在断点时,请求会触发 xdebug,导致页面卡住。
以上就是Xdebug.remote_autostart=1导致504错误:如何避免页面请求卡死?的详细内容,更多请关注php中文网其它相关文章!
Article Links:https://www.hinyin.com/n/260382.html
Article Source:admin
Article Copyright:除非特别标注,否则均为本站原创文章,转载时请以链接形式注明文章出处。