I've installed Xdebug and setup by this instruction:
Install Xdebug PHP:
sudo apt-get update -y
sudo apt-get install -y php7.4-xdebug
Find xdebug.so, then add the first one to php.ini:
sudo updatedb
locate xdebug.so
locate php.ini
Config php.ini:
sudo gedit /etc/php/7.4/apache2/php.ini
Then restart Apache web server:
sudo service apache2 restart
PhpStorm settings and code:
Result and Xdebug Chrome extension enabled:
Did I miss anything? This setting works fine for me in PHP 7.2 and bellow but now on PHP 7.4 and it's not working any more.





