Skip to content

Instantly share code, notes, and snippets.

@andypost
Created October 19, 2020 15: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 andypost/640626d107037c6dd9b5577c13f69781 to your computer and use it in GitHub Desktop.
Save andypost/640626d107037c6dd9b5577c13f69781 to your computer and use it in GitHub Desktop.
php-ini change from xdebug 2 to 3
; XDebug configuration
-xdebug.remote_enable = 1
-xdebug.remote_connect_back = 1
-xdebug.remote_port = 9000
xdebug.max_nesting_level = 2000
-xdebug.profiler_enable = 0
-xdebug.profiler_enable_trigger = 1
-xdebug.profiler_output_dir = "/var/log"
+xdebug.mode=debug
+;xdebug.remote_enable = 1
+;xdebug.remote_connect_back = 1
+;xdebug.remote_port = 9000
+xdebug.discover_client_host=1
+xdebug.client_port=9000
+;xdebug.mode=profile
+;xdebug.profiler_enable = 0
+;xdebug.profiler_enable_trigger = 1
+;xdebug.profiler_output_dir = "/var/log"
+xdebug.output_dir = "/tmp"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment