From f292167cf7408e65e2bce1dba38a1973390640ee Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 6 Jan 2025 13:02:36 +0100 Subject: [PATCH] xdebug ini fix for xdebug version 2 --- .ddev/php/xdebug.ini | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/.ddev/php/xdebug.ini b/.ddev/php/xdebug.ini index 768107f..30cb550 100644 --- a/.ddev/php/xdebug.ini +++ b/.ddev/php/xdebug.ini @@ -1,8 +1,15 @@ ;xdebug.log = /home/danielknudsen/xdebug.log ;xdebug.client_port = 9003 ;xdebug.client_host=host.docker.internal -xdebug.client_host=docker.for.mac.localhost -xdebug.mode = debug -xdebug.start_with_request = yes -xdebug.log = /tmp/xdebug.log -xdebug.log_level = 7 \ No newline at end of file +;xdebug.client_host=docker.for.mac.localhost +;xdebug.mode = debug +;xdebug.start_with_request = yes +;xdebug.log = /tmp/xdebug.log +;xdebug.log_level = 7 + +xdebug.remote_enable=1 +xdebug.remote_host=docker.for.mac.localhost +xdebug.remote_port=9003 +xdebug.remote_autostart=1 +xdebug.remote_log=/tmp/xdebug.log +xdebug.remote_log_level=7 \ No newline at end of file