Xdebug ignores breakpoints

后端 未结 10 1156
一个人的身影
一个人的身影 2020-12-03 03:41

I am currently trying to get Xdebug to work on our development server. As client I am using netbeans and the connection so far works without problems. But when I try to set

10条回答
  •  南笙
    南笙 (楼主)
    2020-12-03 03:54

    I came across this post trying to solve my xdebug problem in eclipse not breaking at break points for a web application. I found the comments herein very useful. Also, this post http://www.devside.net/wamp-server/netbeans-waiting-for-connection-netbeans-xdebug-issue came in very handy to solve my issue. I just had to set the following flag in my relevant php.ini.

    xdebug.remote_enable=1

    xdebug would continuously wait on the session but after setting the remote debug flag the session wait issue, breaking point issue as well the xdebug log file that I had defined also started logging transactions.

提交回复
热议问题