Updated question : PhpStorm | WebMatrix (IISExpress) | Xdebug.remote_port | — Which Port(s) to put where?
I\'m running localhost web server on my Windows machine w
First check for on what port xdebug is working on, you can find it in your php.ini under xdebug.remote_port=9123
. As you can see in my case it is set to 9123.
Now open PhpStorm go to php debug, see screenshot:
under Xdebug you will find Debug port, make sure that its value is the same as in the php.ini file under xdebug.remote_port
(9123 in my case).
Hope it helps