Comparte:
Storage link
Cuando ejecuto en homestead sobre windows 10 "php artisan storage:link" me aparece un error de protocolo... no sé cómo resolverlo. Muchas gracias, Álvaro
vagrant@homestead:~/code/blog$ php artisan storage:link
ErrorException
symlink(): Protocol error
at vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:263
259| */
260| public function link($target, $link)
261| {
262| if (! windows_os()) {
> 263| return symlink($target, $link);
264| }
265|
266| $mode = $this->isDirectory($target) ? 'J' : 'H';
267|
+16 vendor frames
17 artisan:37
Illuminate\Foundation\Console\Kernel::handle()
vagrant@homestead:~/code/blog$ php artisan storage:link
ErrorException
symlink(): Protocol error
at vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:263
259| */
260| public function link($target, $link)
261| {
262| if (! windows_os()) {
> 263| return symlink($target, $link);
264| }
265|
266| $mode = $this->isDirectory($target) ? 'J' : 'H';
267|
+16 vendor frames
17 artisan:37
Illuminate\Foundation\Console\Kernel::handle()