Created
May 14, 2020 13:32
-
-
Save douglascabral/9297adb4eb9b3e7b71e1907fb3ede236 to your computer and use it in GitHub Desktop.
xDebug for XAMPP
This file contains 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
[XDebug] | |
zend_extension = "c:\xampp\php\ext\php_xdebug.dll" | |
xdebug.remote_autostart = 1 | |
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_log = "c:\xampp\tmp\xdebug.txt" | |
xdebug.remote_port = 9000 | |
xdebug.trace_output_dir = "c:\xampp\tmp" | |
;36000 = 10h | |
xdebug.remote_cookie_expire_time = 36000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment