Skip to content

Instantly share code, notes, and snippets.

@V-ed
Last active January 23, 2018 05:10
Show Gist options
  • Save V-ed/26845144d35d5a82289f8214fb8902a1 to your computer and use it in GitHub Desktop.
Save V-ed/26845144d35d5a82289f8214fb8902a1 to your computer and use it in GitHub Desktop.
XDebug Configuration for the php.ini file
[XDebug]
zend_extension = [path to xdebug dll]
xdebug.profiler_append = 0
xdebug.profiler_enable = 0
xdebug.profiler_enable_trigger = 0
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = 127.0.0.1
xdebug.remote_port = 9000
xdebug.remote_mode = req
xdebug.show_local_vars = 1
xdebug.remote_connect_back = 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment