我在 Mac 上使用 PHP Storm 6,想知道是否有任何方法可以使用旁边的基于 Windows 7 的笔记本电脑通过 LiveEdit 预览我的工作。
我在 Mac 上配置了一个虚拟主机(如下)并通过http://somehost.dev连接到它-
NameVirtualHost 127.0.0.1
<VirtualHost *:80>
ServerName somehost.dev
DocumentRoot "/Users/benjaminmcmahan/PhpstormProjects/TEVFDDev/htdocs/"
<Directory "/Users/benjaminmcmahan/PhpstormProjects/TEVFDDev/htdocs/">
Options Indexes FollowSymLinks Includes ExecCGI
AddType text/shtml .shtml
AddOutputFilter INCLUDES .shtml
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
我在 Mac 上安装了 Chrome JetBrains IDE 扩展,并且 Live Edit 工作正常。我注意到可以选择为要使用的扩展设置 IP 地址和端口,我认为这意味着可以从另一台机器上监听 LiveEdit。Mac 的 IP 地址是 192.168.2 - 使用此 IP 地址,我可以somehost.dev
在 Windows 机器上查看并将 Windows 机器的 JetBrains IDE IP 设置为 192.168.1.2。但是,LiveEdit 在这台机器上不做任何事情。
是否可以设置这样的配置?