Can you help me get the php-fpm/xdebug status command to work? I want to manually enable xdebug
xdebug has been turned on in workspace and php-fpm

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.



