設定するとxdebug.profiler_aggregate=1
、localhost が機能しなくなり、Chrome で ERR_EMPTY_RESPONSE が返されます (Safari と Firefox も機能しません)。すべてを元に戻すと正常にxdebug.profiler_aggregate=0
動作します。
xdebug.profiler_aggregate を無効にした php.ini ファイルの動作:
[xdebug]
zend_extension="/Applications/MAMP/bin/php/php7.1.12/lib/php/extensions/no-debug-non-zts-20160303/xdebug.so"
xdebug.remote_enable=1
xdebug.remote_host="localhost"
xdebug.remote_handler="dbgp"
xdebug.remote_port=9000
xdebug.remote_autostart=1
xdebug.profiler_aggregate=0
xdebug.profiler_enable=1
xdebug.profiler_output_dir="/Applications/MAMP/tmp"
;xdebug.default_enable=1
display_errors = on
display_startup_errors = on
track_errors = on
xmlrpc_errors = on
xdebug.force_display_errors = on
xdebug.show_error_trace = on
これを解決する方法を知っている人はいますか?