Created
November 5, 2013 15:40
-
-
Save dejanmarkovic/7320988 to your computer and use it in GitHub Desktop.
Integrating XDebug with PhpStorm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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