Skip to content

Instantly share code, notes, and snippets.

@vonglasow
Created September 19, 2013 15:00
Show Gist options
  • Save vonglasow/6624789 to your computer and use it in GitHub Desktop.
Save vonglasow/6624789 to your computer and use it in GitHub Desktop.
xdebug config
xdebug.default_enable=1
xdebug.collect_params = 4
xdebug.collect_return = on
xdebug.collect_vars = off
xdebug.dump.SERVER = HTTP_HOST, SERVER_NAME, REMOTE_ADDR, REQUEST_METHOD
xdebug.dump_globals = on
xdebug.dump_once = on
xdebug.dump_undefined = on
xdebug.extended_info = on
xdebug.max_nesting_level = 100
xdebug.overload_var_dump = on
xdebug.show_local_vars = on
xdebug.profiler_append = on
xdebug.show_exception_trace = on
xdebug.show_local_vars = on
xdebug.var_display_max_children = 256
xdebug.var_display_max_data = 2048
xdebug.var_display_max_depth = 5
xdebug.trace_options = on
xdebug.trace_output_dir = /tmp
xdebug.trace_output_name = trace-%p-%H
xdebug.var_display_max_children = 256
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=192.168.0.221
xdebug.remote_port=9010
xdebug.remote_autostart=0
xdebug.profiler_enable=1
xdebug.profiler_output_dir='/var/www/xdebug'
xdebug.profiler_output_name = cachegrind.out.%t-%s
xdebug.remote_log=/tmp/php5-xdebug.log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment