Last active
January 23, 2018 05:10
-
-
Save V-ed/26845144d35d5a82289f8214fb8902a1 to your computer and use it in GitHub Desktop.
XDebug Configuration for the php.ini file
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://xdebug.org/wizard.php |
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
[XDebug] | |
zend_extension = [path to xdebug dll] | |
xdebug.profiler_append = 0 | |
xdebug.profiler_enable = 0 | |
xdebug.profiler_enable_trigger = 0 | |
xdebug.remote_enable = 1 | |
xdebug.remote_autostart = 1 | |
xdebug.remote_handler = "dbgp" | |
xdebug.remote_host = 127.0.0.1 | |
xdebug.remote_port = 9000 | |
xdebug.remote_mode = req | |
xdebug.show_local_vars = 1 | |
xdebug.remote_connect_back = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment