Last active
January 11, 2022 12:22
-
-
Save mbpcoder/b3c5581a8434ec87f3b5f7b53ead5116 to your computer and use it in GitHub Desktop.
Xdebug Configuration for 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 2 | |
[xdebug] | |
zend_extension ="c:\xampp\php\ext\php_xdebug.dll" | |
xdebug.remote_port=9000 | |
xdebug.remote_autostart=on | |
xdebug.remote_enable=on | |
xdebug.profiler_enable = off | |
xdebug.profiler_enable_trigger = Off | |
xdebug.profiler_output_name = cachegrind.out.%t.%p | |
xdebug.profiler_output_dir ="c:/xampp/tmp" | |
# xdebug 3 | |
xdebug.mode=debug | |
xdebug.start_with_request=yes | |
;# For PhpStorm set below to 9000 (or update IDE's settings). | |
xdebug.client_port = 9000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment