Created
January 27, 2019 14:09
-
-
Save WebDevJL/329ac827f1bd0515d5e7844d8537f248 to your computer and use it in GitHub Desktop.
Xdebug configuration to add in php.ini
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.remote_enable=1 | |
xdebug.remote_connect_back=On | |
xdebug.remote_port="9000" | |
xdebug.profiler_enable=0 | |
xdebug.remote_autostart = 1 | |
xdebug.var_display_max_depth = 5 | |
xdebug.var_display_max_children = 256 | |
xdebug.var_display_max_data = 1024 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment