Skip to content

Commit 74030c5

Browse files
committed
xdebug: set start_with_request to default
1 parent 6be20c2 commit 74030c5

File tree

12 files changed

+18
-13
lines changed

12 files changed

+18
-13
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@
88

99
#### Fixed
1010
- Fixex `redis` module compilation for PHP 8.1
11-
- Fixed PHP Xdebug v3 defaults
11+
- Fixed PHP Xdebug v3 defaults to:
12+
```ini
13+
xdebug.mode = Off
14+
xdebug.start_with_request = default
15+
xdebug.client_port = 9000
16+
```
1217

1318
#### Changed
1419
- Removed `pdo_dblib` from PHP 8.1 due to errors

Dockerfiles/base/data/php-ini.d/php-7.2.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ html_errors = Off
4444

4545
; Xdebug settings
4646
xdebug.mode = Off
47-
xdebug.start_with_request = Off
47+
xdebug.start_with_request = default
4848
xdebug.client_port = 9000

Dockerfiles/base/data/php-ini.d/php-7.3.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ html_errors = Off
4444

4545
; Xdebug settings
4646
xdebug.mode = Off
47-
xdebug.start_with_request = Off
47+
xdebug.start_with_request = default
4848
xdebug.client_port = 9000

Dockerfiles/base/data/php-ini.d/php-7.4.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ html_errors = Off
4444

4545
; Xdebug settings
4646
xdebug.mode = Off
47-
xdebug.start_with_request = Off
47+
xdebug.start_with_request = default
4848
xdebug.client_port = 9000

Dockerfiles/base/data/php-ini.d/php-8.0.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ html_errors = Off
4444

4545
; Xdebug settings
4646
xdebug.mode = Off
47-
xdebug.start_with_request = Off
47+
xdebug.start_with_request = default
4848
xdebug.client_port = 9000

Dockerfiles/base/data/php-ini.d/php-8.1.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ html_errors = Off
4444

4545
; Xdebug settings
4646
xdebug.mode = Off
47-
xdebug.start_with_request = Off
47+
xdebug.start_with_request = default
4848
xdebug.client_port = 9000

Dockerfiles/work/data/php-ini.d/php-7.2.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ html_errors = On
4444

4545
; Xdebug settings
4646
xdebug.mode = Off
47-
xdebug.start_with_request = Off
47+
xdebug.start_with_request = default
4848
xdebug.client_port = 9000

Dockerfiles/work/data/php-ini.d/php-7.3.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ html_errors = On
4444

4545
; Xdebug settings
4646
xdebug.mode = Off
47-
xdebug.start_with_request = Off
47+
xdebug.start_with_request = default
4848
xdebug.client_port = 9000

Dockerfiles/work/data/php-ini.d/php-7.4.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ html_errors = On
4444

4545
; Xdebug settings
4646
xdebug.mode = Off
47-
xdebug.start_with_request = Off
47+
xdebug.start_with_request = default
4848
xdebug.client_port = 9000

Dockerfiles/work/data/php-ini.d/php-8.0.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ html_errors = On
4444

4545
; Xdebug settings
4646
xdebug.mode = Off
47-
xdebug.start_with_request = Off
47+
xdebug.start_with_request = default
4848
xdebug.client_port = 9000

Dockerfiles/work/data/php-ini.d/php-8.1.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ html_errors = On
4444

4545
; Xdebug settings
4646
xdebug.mode = Off
47-
xdebug.start_with_request = Off
47+
xdebug.start_with_request = default
4848
xdebug.client_port = 9000

build/ansible/group_vars/all/all-php-settings.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ php_settings_ini:
4646
xdebug2_remote_autostart: 'Off'
4747
# Xdebug3 settings
4848
xdebug3_mode: 'Off'
49-
xdebug3_start_with_request: 'Off'
49+
xdebug3_start_with_request: 'default'
5050
xdebug3_client_port: '9000'
5151

5252
# ---- Inherits from base ----
@@ -71,7 +71,7 @@ php_settings_ini:
7171
xdebug2_remote_autostart: 'Off'
7272
# Xdebug3 settings
7373
xdebug3_mode: 'Off'
74-
xdebug3_start_with_request: 'Off'
74+
xdebug3_start_with_request: 'default'
7575
xdebug3_client_port: '9000'
7676

7777
# -------------------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)