Reputation: 594
Windows7 - VAgrant 1.76 - VirtualBox5 - Phpstorm9
My connection SSH via phpstorm terminal works with vagrant/vagrant user/password.
But I'm not able to connect to the php remote interpreter.
No path mapping were found.
THanks to help me!
When I try to change the remote folder I got this
Upvotes: 1
Views: 552
Reputation: 1545
Make sure that in the xdebug.ini file from vagrant config folder (\config\php5-fpm-config/xdebug.ini) In the line :
xdebug.remote_host = "xxx.xxx.xxx.xxx"
Have your local machine IP. You can get in windows by enter in cmd->command and type "ipconfig".
Upvotes: 0
Reputation: 594
How I fix it : set UseDNS No to /etc/ssh/sshd_config Modify : sudo nano -w /etc/ssh/sshd_config
Upvotes: 0