Damjan Cvetko

Results 297 comments of Damjan Cvetko

Hi @christhomas! Sorry for not getting back sooner. If I understand the issue, you have a bunch of containers, where the code is residing in the same location, but outside...

Hi. I think I have a pretty good picture of what your setup might be, I just have a few questions. 1. Do you have one large checkout and see...

Sorry about question 3. I got lost in details and haven't asked the right way. What I wanted to ask is: Where do you define `PHP_IDE_CONFIG` and I think you...

Generally simultaneous debugging works quite ok. I'd need to check more specific cases like yours. You just need to select a thread to work on it. However, from what I...

The ide was: In php.ini set ``` xdebug.remote_autostart=0 ``` Then when you start the request you want to debug, do it like this: ``` curl http://..../path?XDEBUG_SESSION_START=vsc ``` This will work...

Hi @ttodua, thanks for the message. Indeed this is on the "roadmap", almost exactly as you described it. I already started talks with Derick of Xdebug to implement an API...

Hi! No this was not implemented, however the reason lies with Xdebug. The only way to implement it right now would be to detect that a break/step occured outside of...

Hm. Can you explain a bit more what you think with entering vendor with "step over"? Because if you are in one file, and "step over" you should not land...

This is indeed strange. Do you have any exception filters turned on? There where the breakpoints are listed. Make sure "Everything" is unchecked and try to uncheck Exceptions, Errors, Warnings....

The issue is not that straight forward. If I want to solve this in the extension code, I would need to perform a "step in", check the path and again...