Skip to content

Instantly share code, notes, and snippets.

@apinstein
Created May 28, 2013 15:12
Show Gist options
  • Save apinstein/5663478 to your computer and use it in GitHub Desktop.
Save apinstein/5663478 to your computer and use it in GitHub Desktop.
; Enable xdebug extension module
zend_extension=/usr/lib64/php/modules/xdebug.so
xdebug.remote_enable = true
xdebug.remote_host = 127.0.0.1
xdebug.remote_enable = 1
xdebug.remote_port = 9000
xdebug.remote_handler = dbgp
; To generate TRACES of script execution; see http://www.xdebug.org/docs/execution_trace
; this will happen ALWAYS (or set to 0 and use xdebug_start_trace; sadly no XDEBUG_XXX method to enable this via URL)
;xdebug.auto_trace=1
;xdebug.collect_params=3
;xdebug.collect_return=1
; good idea to do this explicitly b/c it is hard to tell where it went otherwise
xdebug.trace_output_dir=/tmp/
xdebug.trace_format=0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment