xdebug won't stop at breakpoint
eclipse, php, xdebug
Solution
If xdebug do not stop in any part of your code, add `xdebug_break()` to this part of the code.
Problem
I spend some hours to set up my IDE to debug PHP with eclipse and xdebug.. Everything is ok except the breakpoint I set on eclipse. If I double-click on a line to add a breakpoint, the debugger want not to stop.. If a add the line xdebug_break() the debugger stops well at the line... It's maybe a problem with the configuration. Could anyone help me ? - Eclipse: Eclipse PDT 2.2.0 All In Ones Windows 32 bits - Xdebug: 5.3 VC6 (32 bit) - PHP: PHP Version 5.3.3 PHP.ini ``` [xdebug] xdebug.remote_enable=1 xdebug.remote_host=localhost xdebug.remote_port=9000 xdebug.remote_handler="dbgp" xdebug.remote_mode=req xdebug.profiler_enable = 1 xdebug.profiler_output_dir = "c:/temp" xdebug.collect_params = 4 xdebug.collect_return = on xdebug.collect_vars = on xdebug.show_local_vars = 1 ```