PHP version: PHP 7.1.11
XDebug version: php_xdebug-2.5.4-7.1-vc14.dll
Adapter version: 1.12.1
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": 9000
},
{
"name": "Launch currently open script",
"type": "php",
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",
"port": 9000
}
]
}
XDebug php.ini config:
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
xdebug.remote_connect_back = 1
xdebug.remote_port = 9000
xdebug.profiler_enable = 0
xdebug.remote_handler="dbgp"
xdebug.profiler_enable_trigger = Off
xdebug.show_local_vars=0
Code snippet to reproduce:
any
I'm having trouble with the latest version of your debugger. I can make breakpoints, and debugger will stop on these breakpoints, but I can't do much else. Can't move around with F10, F11. All my locals are 'uninitialiazed':
https://i.imgur.com/Mo6R0L8.png
It was working fine yesterday and it suddenly stopped working. Today I updated to latest version and it still happening.
PHP version: PHP 7.1.11
XDebug version: php_xdebug-2.5.4-7.1-vc14.dll
Adapter version: 1.12.1
Your launch.json:
XDebug php.ini config:
Code snippet to reproduce:
any
I'm having trouble with the latest version of your debugger. I can make breakpoints, and debugger will stop on these breakpoints, but I can't do much else. Can't move around with F10, F11. All my locals are 'uninitialiazed':
https://i.imgur.com/Mo6R0L8.png
It was working fine yesterday and it suddenly stopped working. Today I updated to latest version and it still happening.