Skip to content

Instantly share code, notes, and snippets.

@KhanMaytok
Forked from odan/xampp_php7_xdebug.md
Created March 11, 2017 00:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KhanMaytok/7b9b19d815e33b7159c258d97349180b to your computer and use it in GitHub Desktop.
Save KhanMaytok/7b9b19d815e33b7159c258d97349180b to your computer and use it in GitHub Desktop.
Installing Xdebug for XAMPP

Installing Xdebug for XAMPP with PHP 7.x

Requirements

Setup

  • Download Xdebug for PHP 7.0: http://xdebug.org/files/php_xdebug-2.4.0rc3-7.0-vc14.dll

  • Copy file 'php_xdebug-2.4.0rc3-7.0-vc14.dll' to: C:\xampp\php\ext

  • Open file with notepad++: C:\xampp\php\php.ini

  • Disable output buffering: output_buffering = Off

  • Scroll down to [XDebug] section and copy this lines:

[XDebug]
zend_extension = "c:\xampp\php\ext\php_xdebug-2.4.0rc3-7.0-vc14.dll"
xdebug.remote_autostart = 1
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_log="c:\xampp\tmp\xdebug.txt"
xdebug.remote_port = 9000
xdebug.trace_output_dir = "c:\xampp\tmp"
; 3600 (1 hour), 36000 = 10h
xdebug.remote_cookie_expire_time = 36000
  • Stop/Start Apache

Xdebug downloads for newer PHP versions

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment