This repository was archived by the owner on Feb 13, 2023. It is now read-only.
This repository was archived by the owner on Feb 13, 2023. It is now read-only.
OOTB Xdebug support for PhpStorm #94
Closed
Description
I'm not sure if Drupal VM already supports this, but I had to do a bit of work in order to get Xdebug talking to PhpStorm.
I had to alter my /etc/php5/apache2/conf.d/xdebug.ini as follows:
xdebug.default_enable = 1 ; Was 0
xdebug.remote_enable = true ; Was false
xdebug.remote_connect_back = true ; Was false
xdebug.remote_host = 10.0.2.2 ; Was localhost
xdebug.idekey = "vagrant" ; Was sublime
Is there any chance of having this be Drupal VM's default configuration, or somehow make it very easy to configure Xdebug this way in config.yml?