Skip to content

Instantly share code, notes, and snippets.

@mbpcoder
Last active January 11, 2022 12:22
Show Gist options
  • Save mbpcoder/b3c5581a8434ec87f3b5f7b53ead5116 to your computer and use it in GitHub Desktop.
Save mbpcoder/b3c5581a8434ec87f3b5f7b53ead5116 to your computer and use it in GitHub Desktop.
Xdebug Configuration for php.ini
# xdebug 2
[xdebug]
zend_extension ="c:\xampp\php\ext\php_xdebug.dll"
xdebug.remote_port=9000
xdebug.remote_autostart=on
xdebug.remote_enable=on
xdebug.profiler_enable = off
xdebug.profiler_enable_trigger = Off
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir ="c:/xampp/tmp"
# xdebug 3
xdebug.mode=debug
xdebug.start_with_request=yes
;# For PhpStorm set below to 9000 (or update IDE's settings).
xdebug.client_port = 9000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment