You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To get the debugger profiles working you need to ensure that `XDebug` for `Apache` (or your preferred webserver) is connected to you machine at
122
-
port `9000` while `XDebug` for the PHP CLI should be configured to bind to port `9001`. Depending on your system a possible configuration could
122
+
To get the debugger profiles working you need to ensure that `XDebug` for `Apache` (or your preferred webserver) and `XDebug` for PHP CLI both connect to your machine at
123
+
port `9003`. Depending on your system a possible configuration could
123
124
look like this:
124
125
125
126
```ini
@@ -129,7 +130,7 @@ look like this:
129
130
zend_extension=/usr/lib/php/20190902/xdebug.so
130
131
xdebug.remote_enable=1
131
132
xdebug.remote_host=127.0.0.1
132
-
xdebug.remote_port=9001
133
+
xdebug.remote_port=9003
133
134
xdebug.remote_autostart=1
134
135
```
135
136
@@ -140,7 +141,7 @@ xdebug.remote_autostart=1
140
141
zend_extension=/usr/lib/php/20190902/xdebug.so
141
142
xdebug.remote_enable=1
142
143
xdebug.remote_host=127.0.0.1
143
-
xdebug.remote_port=9000
144
+
xdebug.remote_port=9003
144
145
xdebug.remote_autostart=1
145
146
```
146
147
@@ -158,6 +159,55 @@ If you're looking for some good sources on how to setup `VSCode` + `XDebug` we c
0 commit comments