Search code examples
phpphpstormxdebug

PhpStorm not stopping at breakpoints Xdebug


I am trying to debug a Yii2 project using Xdebug.

Before formatting the MacOS, I just entered the web project(Apache 2 web server) from browser and PhpStorm was automatically stopping at breakpoints. Now I have set up everything but PhpStorm does not stop at them.

Here is the PhpStorm validation of debugger:

enter image description here

Here is CLI interpreter (php 7.0 executable)

enter image description here

Here is the IDE key for xdebug:

enter image description here

I have installed the Xdebug Chrome extension, and it is in debug mode.

What I am missing? What may be the cause that PhpStorm does not stop at breakpoints?


Solution

  • Before formatting the MacOS, I just entered the web project (Apache 2 web server) from browser and PhpStorm was automatically stopping at breakpoints. Now I have set up everything but PhpStorm does not stop at them.

    There is a big chance that you may have installed too much stuff. I mean -- something that you unaware of or how it works.

    Right now it sounds like it might be php-fpm -- it also uses TCP 9000 port that Xdebug uses by default ... so when Xdebug is making debug connection to IDE it connects to php-fpm instead (and PhpStorm cannot detect on Mac that such port is already in use).

    Therefore: please change Xdebug port to be some another number (e.g. 9001 should be fine) in both php.ini and PhpStorm settings.