Hi there ,
I am trying to develop an extension,
I'm trying to make xdebug work with Espocrm but I have had no luck so far,
my debug config is
and my vscode config is
I can debug any other project just like this, but when I try to use it with Espocrm I can see call stack but my ide doesn't stop at breakpoints
There is no error in my xdebug and apache log file
I have enabled isDeveloperMode and useCache is false
Could someone share with me a working config, what am I doing wrong
Thanks in advance
I am trying to develop an extension,
I'm trying to make xdebug work with Espocrm but I have had no luck so far,
my debug config is
Code:
xdebug.mode = debug xdebug.start_with_request = yes
Code:
{ "version": "0.2.0", "configurations": [ { "name": "Listen for Xdebug", "type": "php", "request": "launch", "port": 9003, } ] }
I can debug any other project just like this, but when I try to use it with Espocrm I can see call stack but my ide doesn't stop at breakpoints
There is no error in my xdebug and apache log file
I have enabled isDeveloperMode and useCache is false
Could someone share with me a working config, what am I doing wrong
Thanks in advance
Comment