Skip to content

Instantly share code, notes, and snippets.

@dmouse
Created February 2, 2015 02:52
Show Gist options
  • Select an option

  • Save dmouse/e88a7889aa6070aea089 to your computer and use it in GitHub Desktop.

Select an option

Save dmouse/e88a7889aa6070aea089 to your computer and use it in GitHub Desktop.
Yes another, yes another xdebug configuration. Configuration for phpstorm to use xdebug on remote server
; Enable xdebug extension module
zend_extension=/usr/lib64/php/modules/xdebug.so
xdebug.collect_params=3
xdebug.show_local_vars=5
xdebug.dump.GET=*
xdebug.dump.POST=*
; see http://xdebug.org/docs/all_settings
xdebug.collect_params=1
xdebug.cli_color=1
;var_display_max_data=8
;var_display_max_children=4
xdebug.profiler_enable=1
xdebug.profiler_enable_trigger = 1
xdebug.profiler_output_dir=/tmp/xdebug
xdebug.extended_info=1
xdebug.auto_trace=1
xdebug.remote_autostart=1
xdebug.remote_enable=1
xdebug.remote_connect_back=1
xdebug.remote_port=9000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment