From 0fd7101f09a523d6c1f0a18fad6e7d10d05937c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernhard=20Z=C3=BCrn?= Date: Fri, 26 Jan 2024 14:11:21 +0000 Subject: [PATCH] issue #3389 https://github.com/lando/lando/issues/ do not use config for xdebug 2 since current php-versions come with xdebug3 --- config/php.ini | 1 - docs/config.md | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/config/php.ini b/config/php.ini index 8e75700..551e72d 100644 --- a/config/php.ini +++ b/config/php.ini @@ -27,7 +27,6 @@ date.timezone = "UTC" ; Xdebug xdebug.max_nesting_level = 512 -xdebug.remote_autostart = 1 xdebug.start_with_request = trigger xdebug.mode = ${XDEBUG_MODE} diff --git a/docs/config.md b/docs/config.md index c58039a..f38bbf5 100644 --- a/docs/config.md +++ b/docs/config.md @@ -165,7 +165,7 @@ If you have set `xdebug: true` in your recipe or service config and run `lando r xdebug.max_nesting_level = 256 xdebug.show_exception_trace = 0 xdebug.collect_params = 0 -xdebug.remote_enable = 1 +xdebug.mode = debug xdebug.remote_host = YOUR HOST IP ADDRESS ```