PHP version: 7.3.26
XDebug version: 2.9.6
Adapter version: 1.14.6
Your launch.json:
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
"port": 9003,
"log": true
}
]
}
XDebug php.ini config:
; Enable xdebug extension module
zend_extension = xdebug.so
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
xdebug.remote_log = /home/me/log/xdebug.log
xdebug.remote_port = 9003
xdebug.show_error_trace = 1
XDebug logfile (from setting xdebug.remote_log in php.ini):
[21447] Log opened at 2021-02-02 17:25:10
[21447] I: Connecting to configured address/port: localhost:9003.
[21447] W: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29).
[21447] E: Could not connect to client. :-(
[21447] Log closed at 2021-02-02 17:25:10
Adapter logfile (from setting "log": true in launch.json):
I'm using SSH to remote debug. If I use adapter version 1.14.6 and click the play button on the debug tab, the little blue loading thing under it goes by a few times and then nothing. If I uninstall 1.14.6 and install 1.14.5 using the vsix file it all works with the same settings. I have to assume it's an issue in 1.14.6 since I was using 1.14.5 yesterday and it worked, and then today I got 1.14.6 and it doesn't work.
PHP version: 7.3.26
XDebug version: 2.9.6
Adapter version: 1.14.6
Your launch.json:
XDebug php.ini config:
XDebug logfile (from setting
xdebug.remote_login php.ini):Adapter logfile (from setting
"log": truein launch.json):I'm using SSH to remote debug. If I use adapter version
1.14.6and click the play button on the debug tab, the little blue loading thing under it goes by a few times and then nothing. If I uninstall1.14.6and install1.14.5using the vsix file it all works with the same settings. I have to assume it's an issue in1.14.6since I was using1.14.5yesterday and it worked, and then today I got1.14.6and it doesn't work.