Skip to content

Instantly share code, notes, and snippets.

@Remzi1993
Created May 11, 2024 14:01
Show Gist options
  • Save Remzi1993/3df76129835feecf91dca5c0cf197853 to your computer and use it in GitHub Desktop.
Save Remzi1993/3df76129835feecf91dca5c0cf197853 to your computer and use it in GitHub Desktop.
Instructions to install Xdebug on Windows
Instructions to install Xdebug on Windows
1. Download php_xdebug-3.3.2-8.3-vs16-x86_64.dll (for thread safe PHP)
2. Move the downloaded file to C:\php\ext, and rename it to php_xdebug.dll
3. Update C:\Program Files\PHP\8.3.7\php.ini and add the line:
zend_extension = xdebug (this only works if extension_dir = "ext" is enabled in php.ini)
Otherwise use full path: zend_extension = "C:\Program Files\PHP\8.3.7\ext\php_xdebug.dll"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment