PHP Debugger Xdebug 3 remote debugging

Hello,

This is my System:

PHP Version 7.2.34-28+ubuntu18.04.1+deb.sury.org+1

Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies
with Xdebug v3.1.1, Copyright (c) 2002-2021, by Derick Rethans
with Zend OPcache v7.2.34-28+ubuntu18.04.1+deb.sury.org+1, Copyright (c) 1999-2018, by Zend Technologies

Komodo 12

With these settings I got the remote debugger running

zend_extension = /usr/lib/php/20170718/xdebug.so
xdebug.remote_handler=dbgp
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9003
xdebug.mode = debug
xdebug.start_with_request = yes

For the local php Debugger I use another php.ini like this:

zend_extension = /usr/lib/php/20170718/xdebug.so
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9003

I only want to use the remote debugger
The debugger stops at the breakpoints, but I have an other problem:

After the last breakpoint, when I click on “continue”, the program sometimes does not runs to its end. I can see, the a request has no repsonse. But it should.

Do you have any idea what is goig wrong there. On very less code it works. But e.g. on a rest api funtion in word press, the response does not arrive. Without debugger the request works perfectly.

@frischka , Thanks for posting! The team will get back to you accordingly. Thanks.