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
1) Find your php.ini php -i | grep 'php.ini' or phpinfo(); | |
2) Add the following lines to php.ini (remember you can have multiple depending on your setup) | |
xdebug.mode = debug | |
xdebug.start_With_request = yes | |
xdebug.client_port = 9003 | |
xdebug.client_host = 127.0.0.1 |