WEBDAV 无法进行必要的数据倒带

necessary data rewind wasn't possible with WEBDAV

我使用 Laravel WebDAV wrapper which uses Sabre 将媒体上传到 WebDAV 服务器,该服务器使用 Nginx 进行基本身份验证,但根据文档中设置的默认包,我在 filesystem.php 中使用了此配置:

    'dav' => [
        'driver' => 'webdav',
        'baseUri' => 'https://dav.example.com/',
        'userName' => 'test',
        'password' => 'test',
    ],

但是我在尝试使用 Laravel 存储存储文件时遇到此错误:

necessary data rewind wasn't possible

当连接到服务器需要身份验证时,必须设置 authType 设置。对我来说,基本身份验证应该是1

    'dav' => [
        'driver' => 'webdav',
        'baseUri' => 'https://dav.example.com/',
        'userName' => 'test',
        'password' => 'test',
        'authType' => 1,
    ],