2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

WindowsでLaravelのphp artisan storage:linkが実行できなかった場合の対処法

Last updated at Posted at 2020-11-06

概要

windowsでVirtualBox上にLaravelのソースをマウントして環境を構築している場合、

php artisan storage:linkのコマンドでシンボリックリンクを作ろうとしても、権限の問題かプロトコルエラーとなる。

ErrorException : symlink(): Protocol error

解決策その1

コマンドプロンプトを管理者権限で起動し、php artisan storage:linkを実行する。

解決策その2

Windows側でシンボリックリンクを作成する。

コマンドプロンプトを管理者権限で起動して、

mklink /D 'Laravelの\public\storageまでのパス' ..\storage\app\public

を実行。

あとがき

ググったらその1の策が出てきますが、自分はそれで解決しませんでした。
Windowsで開発している方々ならではの問題かと思いますので同じような問題に直面した方はお試しください。

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?