Activar xdebug en phpStorm (2da parte)

Complementando el post anterior 

👉👉 Activar xdebug en phpStorm👈👈

Al analizar el script generado de [php_info.txt] con el comando [php -i >> php_info.txt] en el sitio web https://xdebug.org/wizard para un ambiente sin xdebug instalado se ve de la siguiente manera:


Ahora las instrucciones del proveedor son:


A continuación su transcripción: 

Instructions

  1. Download xdebug-2.9.8.tgz
  2. Install the pre-requisites for compiling PHP extensions.
    On your Ubuntu system, install them with: apt-get install php-dev autoconf automake
  3. Unpack the downloaded file with tar -xvzf xdebug-2.9.8.tgz
  4. Run: cd xdebug-2.9.8
  5. Run: phpize (See the FAQ if you don't have phpize).

    As part of its output it should show:

    Configuring for:
    ...
    Zend Module Api No:      20180731
    Zend Extension Api No:   320180731

    If it does not, you are using the wrong phpize. Please follow this FAQ entry and skip the next step.

  6. Run: ./configure
  7. Run: make
  8. Run: cp modules/xdebug.so /usr/lib/php/20180731
  9. Edit /etc/php/7.3/cli/php.ini and add the line
    zend_extension = /usr/lib/php/20180731/xdebug.so
  10. Please also update php.ini files in adjacent directories, as your system seems to be configured with a separate php.ini file for the web server and command line.

Luego se debe configurar el phpStorm, ver en el post anterior:

👉👉 Activar xdebug en phpStorm👈👈