DEV Community

Discussion on: How to debug PHP using Visual Studio Code

Collapse
 
tik9 profile image
Timo Körner

For Xdebug 3, there is a new setting available in php.ini:
Enable remote debugging in your php.ini:

xdebug.mode = debug
xdebug.start_with_request = yes

Your config is for xdebug 2. Please check the Php Debug extension in Vscode, under 3. enable remote debugging.