Breakpoints are completely ignored when debugging a CakePHP application

I am developing CakePHP application in NetBeans and finally managed to connect it to XAMPP debugging sessions (PHP 5.3.1 with Xdebug v2.0.6-dev).

It works great at startup, it pauses the application on the first line.

However, any additional breakpoint I set is completely ignored. He does not interrupt or stop; it just ends.

xdebug.extended_info is set to 1, and I tried using a php project without a boot, without any infrastructure magic, and there the breakpoints worked properly.

What hack? I would like to be able to use breakpoints in (Cake) PHP.

+4
source share
1 answer

Try setting the correct binding to the root-webroot-dir in the project property

Another thing, look here:

http://groups.google.ch/group/cake-php/browse_thread/thread/73bcf80a3d626c75

+5
source

All Articles