Created
February 18, 2016 01:32
-
-
Save sadortun/61684e9fc91d5d4ddc4b to your computer and use it in GitHub Desktop.
How To Setup PhpStorm, Xdebug, and MAMP for Debugging: http://manovotny.com/setup-phpstorm-xdebug-mamp-debugging
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
zend_extension="/Applications/MAMP/bin/php/php5.3.29/lib/php/extensions/no-debug-non-zts-20090626/xdebug.so" | |
xdebug.coverage_enable=1 | |
xdebug.default_enable=1 | |
xdebug.profiler_enable=1 | |
xdebug.profiler_output_dir="/tmp" | |
xdebug.remote_autostart=1 | |
xdebug.remote_enable=1 | |
xdebug.remote_host=localhost | |
xdebug.remote_port=9000 |
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.remote_autostart=1 | |
xdebug.remote_enable=1 | |
xdebug.remote_host=127.0.0.1 | |
xdebug.remote_port=9000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment