I'm trying PhpStorm with xdebug, but when I try to validate the configuration, shows me a warning: remote debug is not enabled, as shown the image bellow. In the same way phpinfo() shows xdebug.remote_enable as Off, and of course, debug doesn't work.
php.ini xdebug configuation:
[xdebug] zend_extension = /usr/lib/php/20180731/xdebug.so xdebug.default_enable=1 xdebug.remote_enable=1 xdebug.profiler_enable=1 xdebug.profiler_output_dir="/tmp/xdebug/" xdebug.remote_host = "localhost" xdebug.remote_port=9000 xdebug.idekey="PHPSTORM" 
phpinfo()output, first table: it has the config files used by that PHP installation.