You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My VBox is in windows 10 and I got this error
Cannot create a symlink for "/vagrant/data/magento2/app/design/frontend/Magento/luma/web/images/logo.svg" and place it to "/vagrant/data/magento2/pub/static/frontend/Magento/luma/en_US/images/logo.svg" Warning!symlink(): Protocol error
do you have some idea ?
I already add on Vagrantfile
vb.customize ['setextradata', :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate//vagrant", '1']
The text was updated successfully, but these errors were encountered:
The error sometimes return after you shutdown the VM and restart or still persists even after having above. Basically you need to again tell VirtualBox to enable symlinks. Here's the complete solution
Obviously have this in your vagrant file, as suggested above
config.vm.provider "virtualbox" do |v|
v.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/Folder_Name", "1"]
end
I recommended comment out any sync folder and let default ./(at host) synced at /vagrant(at guest). This will make sure your shared folder(Folder_Name) name is always vagrant as mentioned here https://www.vagrantup.com/docs/synced-folders/. Also, you won't face issues with ssh
If the symlink protocol error returns after restart or still persists run
My VBox is in windows 10 and I got this error
Cannot create a symlink for "/vagrant/data/magento2/app/design/frontend/Magento/luma/web/images/logo.svg" and place it to "/vagrant/data/magento2/pub/static/frontend/Magento/luma/en_US/images/logo.svg" Warning!symlink(): Protocol error
do you have some idea ?
I already add on Vagrantfile
vb.customize ['setextradata', :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate//vagrant", '1']
The text was updated successfully, but these errors were encountered: