Xdebug ignores breakpoints

后端 未结 10 1159
一个人的身影
一个人的身影 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 had the same problem: Eclipse breakpoints did not work, xdebug_break() did work. My problem were spaces in the path:

    <- breakpoint_set -i 1323 -t line -f file:///Users/admin/Documents/projects/something/path%2520with%2520space/web/index.php -n 223
    -> 
    
    

    After changing the path to something without spaces the breakpoints in Eclipse worked fine.

提交回复
热议问题