Hi,
I've installed and configured the debugger according to this (remote + DBGP proxy): https://docs.devsense.com/en/vscode/debug/launch-json
Configuration looks like this:
{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",
"port": 9000,
"dbgpProxy":
{
"enable": true,
"host": "...",
"port": 9001
}
}
When running the listener I get this message in VSCODE:
Registering with the DBGp proxy on ... with key XXX
But not the "Registration was successful!" message included in the documentation.
This is the messages on the DBGp Proxy log:
11:09:40.664 [info] [server] Start new client connection from ...
11:09:40.674 [err ] [dbgp-server] Error reading data: EOF
11:09:40.674 [warn] [server] Handler response error: Error reading command: EOF
11:09:40.674 [info] [server] Closing client connection from ...
So there seems to be some error occurring but I can't understand why.