PhpStorm cannot see xdebug but it is installed. In my browser xdebug works fine. Where is the problem?
The error:
Connection with \'xdebug\' was n
I had a similar issue in that it worked then it did not.
In my case, the cause turned out to be an miss placed .htaccess
file in the root of the project.
The .htaccess
file (repeated below) was there from a previous set of testing and was intended to stop XDebug from working. It sure did.
php_value xdebug.remote_autostart 0
php_value xdebug.remote_enable 0
php_value xdebug.profiler_enable 0
I just renamed the file and like magic, all was good.