xdebug : Debug session was finished without being paused

 一、当调试模式出现说路径不匹配的时候,需要检查当前请求的URL和设置断点的是否在同样的位置

Debug session was finished without being paused
It may be caused by path mappings misconfiguration or not synchronized local and remote projects.
To figure out the problem check path mappings configuration for 'tx_manage.com' server at PHP|Servers or enable Break at first line in PHP scripts option (from Run menu).
Do not show again

二:如果启用了 Break at first line in PHP scripts

只要开启了Starting listening for PHP debug connects,所有不匹配的的请求都会在入口第一行开始debug

如果有别的小伙伴再请求你本机的接口,都会被拦截

 可以在此处勾掉

二、 当你有进行中的debug调试没有结束时,其他的所有请求将会被阻塞

 Max.simultaneous connections 默认为1,可以按需调整,位置在上图的红框下面;

原文地址:https://www.cnblogs.com/liugx/p/8869953.html