Проблема включения PHP Xdebug в VScode - PullRequest
0 голосов
/ 12 февраля 2020

В настоящее время я использую VScode с Remote S SH от Microsoft для своих настроек. По какой-то причине я не могу заставить PHP Debug что-либо делать.

Мой запуск. 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,
                "log" : true
            },
            {
                "name": "Launch currently open script",
                "type": "php",
                "request": "launch",
                "program": "${file}",
                "cwd": "${fileDirname}",
                "port": 9000
            }
        ]
    }

Есть ли что-то еще, что мне может понадобиться ? Запрос консоли отладки выглядит следующим образом.

-> disconnectRequest
{
  command: 'disconnect',
  arguments: { restart: true },
  type: 'request',
  seq: 3
}

<- disconnectResponse
Response {
  seq: 0,
  type: 'response',
  request_seq: 3,
  command: 'disconnect',
  success: true
}

<- launchResponse
Response {
  seq: 0,
  type: 'response',
  request_seq: 2,
  command: 'launch',
  success: true
}
...