although Xdebug with vscode worked fine for a long time suddenly it’s no more possible to debug a php-script in vsc. phpinfo shows ZendEngine v4.2.12 with Xdebug v3.3.2. php.ini is this:
[xdebug]
zend_extension=xdebug
xdebug.mode=debug,develop
xdebug.start_with_request=yes
xdebug.client_host=127.0.0.1
xdebug.client_port=9003
xdebug.idekey = VSCODE
zend_extension = C:xamppphpextphp_xdebug.dll
vscode runs the extension php_debug v1.34.0. lauch.json is this:
"version": "0.2.0",
"configurations": [
{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",
"port": 9003,
},
and settings.json this:
"explorer.confirmDragAndDrop": false,
"workbench.editor.splitInGroupLayout": "vertical",
"php.validate.executablePath": "c:/xampp/php/php.exe",
"php.debug.executablePath": "c:/xampp/php/ext/php_xdebug.dll",
"editor.tabSize": 2,
"[python]": {
does anyone have an idea what is wrong?