VS Code Debugger - Феликс Беккер - Отладчик ни к чему не приводитPhp

Кемеровские программисты php общаются здесь
Anonymous
VS Code Debugger - Феликс Беккер - Отладчик ни к чему не приводит

Сообщение Anonymous »

Я недавно установил отладчик php от Феликса Беккера.
Какие бы настройки конфигурации я ни делал, мой отладчик ни к чему не приводит.
Ниже приведены мои файлы конфигурации.
xdebug.ini

Код: Выделить всё

[xdebug]
; debug
xdebug.default_enable = $value
xdebug.remote_autostart = $value
xdebug.remote_connect_back = 0
xdebug.remote_host = $value
xdebug.remote_port = $value
xdebug.remote_enable = 1
xdebug.idekey = $value

; profiling
xdebug.profiler_enable = 0
xdebug.profiler_output_dir = /tmp

zend_extension=xdebug.so
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": 9009,
"pathMappings": {
"path/path": "$value"
}
},
{
"name": "Launch currently open script",
"type": "php",
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",

"port": 9009,
"pathMappings": {
"path/path": "$value"
}
}
]
}
Я что-то упустил?

Подробнее здесь: https://stackoverflow.com/questions/653 ... t-anything

Вернуться в «Php»