Skip to content

Instantly share code, notes, and snippets.

@dejanmarkovic
Created November 5, 2013 15:40
Show Gist options
  • Save dejanmarkovic/7320988 to your computer and use it in GitHub Desktop.
Save dejanmarkovic/7320988 to your computer and use it in GitHub Desktop.
Integrating XDebug with PhpStorm
https://www.jetbrains.com/phpstorm/webhelp/configuring-xdebug.html
[XDebug]
zend_extension = "C:\xampp\php\ext\php_xdebug.dll"
;xdebug.profiler_append = 0
;xdebug.profiler_enable = 1
;xdebug.profiler_enable_trigger = 0
;xdebug.profiler_output_dir = "C:\xampp\tmp"
;xdebug.profiler_output_name = "cachegrind.out.%t-%s"
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
xdebug.remote_port=9000
;xdebug.trace_output_dir = "C:\xampp\tmp"
One more step is needed:
1. create those bookmark-lets
http://www.jetbrains.com/phpstorm/marklets/
(IDE key is available in phpinfo output for xdebug)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment