Skip to content

Instantly share code, notes, and snippets.

@ravinsharma12345
Last active December 21, 2015 00:49
Show Gist options
  • Save ravinsharma12345/6223490 to your computer and use it in GitHub Desktop.
Save ravinsharma12345/6223490 to your computer and use it in GitHub Desktop.
Xdebug configuration on Xampp
[XDebug]
zend_extension = "C:\xampp\php\ext\php_xdebug-2.2.3-5.4-vc9.dll"
xdebug.profiler_append = 0
xdebug.profiler_enable = 0
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"
;xdebug.idekey = "PHPSTORM"
;Depend on the development tool, xdebug.idekey may not be used. In my case, not relevant.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment