Pascal Carmoni
Pascal Carmoni

Reputation: 594

PhpStorm-Vagrant-VVV Cant connect remote php interpreters

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.enter image description here THanks to help me!

When I try to change the remote folder I got this enter image description here

Upvotes: 1

Views: 552

Answers (2)

ClaudioC
ClaudioC

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

Pascal Carmoni
Pascal Carmoni

Reputation: 594

How I fix it : set UseDNS No to /etc/ssh/sshd_config Modify : sudo nano -w /etc/ssh/sshd_config

Upvotes: 0

Related Questions