Xdebug: не отправляется ответ от PhpStorm - PullRequest
0 голосов
/ 10 марта 2019

Я настроил Xdebug с PhpStorm, и после запуска режима отладки страница продолжает загружаться:

Настройки php.ini:

zend_extension=/usr/lib/php/20151012/xdebug.so
[xdebug]
xdebug.remote_autostart=0
xdebug.remote_enable=1
xdebug.remote_port=9000
xdebug.remote_connect_back=0
xdebug.remote_handler=dbgp
xdebug.remote_host=127.0.0.1
xdebug.remote_log="/tmp/xdebug.log"

В журналах xdebug нет ошибок:

[3963] <- stop -i 7
[3963] -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="stop" transaction_id="7" status="stopped" reason="ok"></response>
[3963]
[3963] Log closed at 2019-03-10 17:30:35
[3963]
[5994] -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="run" transaction_id="6" status="stopping" reason="ok"></response>
[5994]
[5994] <- stop -i 7
[5994] -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="stop" transaction_id="7" status="stopped" reason="ok"></response>
[5994]
[5994] Log closed at 2019-03-10 17:30:43
[5994]
[5993] -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="run" transaction_id="6" status="stopping" reason="ok"></response>
[5993]
[5993] <- stop -i 7
[5993] -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="stop" transaction_id="7" status="stopped" reason="ok"></response>
[5993]
[5993] Log closed at 2019-03-10 17:30:51
[5993]
[3962] <- breakpoint_set -i 13 -t line -f file:///var/www/html/tsc/index.php -n 27
[3962] -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="breakpoint_set" transaction_id="13" id="39620009"></response>

Я также проверил журналы ошибок PHP, но там тоже все нормально.

Любая помощь, чтобы решить проблему?

...