php-fpm/xdebug status command does not work in laradock environment

54 Views Asked by At

Can you help me get the php-fpm/xdebug status command to work? I want to manually enable xdebug

enter image description here

mac info enter image description here

docker version enter image description here

docker compose version enter image description here

xdebug has been turned on in workspace and php-fpm enter image description here

php 7.4 xdebug 3.26

xdebug.ini conf

xdebug.remote_host="host.docker.internal"
xdebug.remote_connect_back=0
xdebug.remote_port=9000
xdebug.idekey=PHPSTORM

xdebug.remote_autostart=0
xdebug.remote_enable=0
xdebug.cli_color=0
xdebug.profiler_enable=0
xdebug.profiler_output_dir="~/xdebug/phpstorm/tmp/profiling"

xdebug.remote_handler=dbgp
xdebug.remote_mode=req

xdebug.var_display_max_children=-1
xdebug.var_display_max_data=-1
xdebug.var_display_max_depth=-1

I tried changing remote_enable=1, but php-fpm/xdebug start also didn’t work.

0

There are 0 best solutions below