OpenListTeam / OpenListTeam/OpenList

[BUG] Webdav上传大文件提示Method Not Allowed

Open
#1,252 12 comments 2 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

bug
Dominant language
Go
Stars
24.7k
Forks
2.3k
Avg merge
1d 20h
Merged PRs (30d)
36

Description

请确认以下事项
  • 我已确认阅读并同意 AGPL-3.0 第15条
    本程序不提供任何明示或暗示的担保,使用风险由您自行承担。

  • 我已确认阅读并同意 AGPL-3.0 第16条
    无论何种情况,版权持有人或其他分发者均不对使用本程序所造成的任何损失承担责任。

  • 我确认我的描述清晰,语法礼貌,能帮助开发者快速定位问题,并符合社区规则。

  • 我已确认阅读了OpenList文档

  • 我已确认没有重复的问题或讨论。

  • 我已确认是OpenList的问题,而不是其他原因(例如 网络依赖操作)。

  • 我认为此问题必须由OpenList处理,而非第三方。

  • 我已确认这个问题在最新版本中没有被修复。

OpenList 版本(必填)

v4.1.2

使用的存储驱动(必填)

115

问题描述(必填)

当通过 webdav 上传文件到驱动内时,如果文件过大(大约 2M就会触发),就会提示405 Method Not Allowed
已经使用代码测试,只更换了文件,大文件就会报错,小文件就会成功,测试代码如下:

import requests
from requests.auth import HTTPBasicAuth

# 配置信息
webdav_url = "http://服务地址/dav/115/%E5%85%B6%E4%BB%96/cherry-studio/cherry-studio.20250910101624.Mac-mini-3.local.mac.zip"
local_file_path = "/Users/ws/Documents/cherry-studio.20250910101823.Mac-mini-3.local.mac.zip"
username = "账号"
password = "密码"

# 读取本地文件
with open(local_file_path, 'rb') as f:
    file_data = f.read()

# 发送 PUT 请求上传
response = requests.put(
    webdav_url,
    data=file_data,
    auth=HTTPBasicAuth(username, password),
    headers={
        "Content-Type": "application/octet-stream"  # 或根据文件类型设置
    }
)

# 检查响应
if response.status_code in [200, 201, 204]:
    print("✅ 文件上传成功")
else:
    print(f"❌ 上传失败,状态码: {response.status_code}")
    print(response.text)

配置文件内容(必填)
{
    "force": false,
    "site_url": "",
    "cdn": "",
    "jwt_secret": "2t0Cay943CupPSkl",
    "token_expires_in": 48,
    "database": {
        "type": "sqlite3",
        "host": "",
        "port": 0,
        "user": "",
        "password": "",
        "name": "",
        "db_file": "data/data.db",
        "table_prefix": "x_",
        "ssl_mode": "",
        "dsn": ""
    },
    "meilisearch": {
        "host": "http://localhost:7700",
        "api_key": "",
        "index": "openlist"
    },
    "scheme": {
        "address": "0.0.0.0",
        "http_port": 5244,
        "https_port": -1,
        "force_https": false,
        "cert_file": "",
        "key_file": "",
        "unix_file": "",
        "unix_file_perm": "",
        "enable_h2c": false
    },
    "temp_dir": "data/temp",
    "bleve_dir": "data/bleve",
    "dist_dir": "",
    "log": {
        "enable": true,
        "name": "data/log/log.log",
        "max_size": 50,
        "max_backups": 30,
        "max_age": 28,
        "compress": false,
        "filter": {
            "enable": false,
            "filters": [
                {
                    "cidr": "",
                    "path": "/ping",
                    "method": ""
                },
                {
                    "cidr": "",
                    "path": "",
                    "method": "HEAD"
                },
                {
                    "cidr": "",
                    "path": "/dav/",
                    "method": "PROPFIND"
                }
            ]
        }
    },
    "delayed_start": 0,
    "max_buffer_limitMB": -1,
    "mmap_thresholdMB": 4,
    "max_connections": 0,
    "max_concurrency": 64,
    "tls_insecure_skip_verify": true,
    "tasks": {
        "download": {
            "workers": 5,
            "max_retry": 1,
            "task_persistant": false
        },
        "transfer": {
            "workers": 5,
            "max_retry": 2,
            "task_persistant": false
        },
        "upload": {
            "workers": 5,
            "max_retry": 0,
            "task_persistant": false
        },
        "copy": {
            "workers": 5,
            "max_retry": 2,
            "task_persistant": false
        },
        "move": {
            "workers": 5,
            "max_retry": 2,
            "task_persistant": false
        },
        "decompress": {
            "workers": 5,
            "max_retry": 2,
            "task_persistant": false
        },
        "decompress_upload": {
            "workers": 5,
            "max_retry": 2,
            "task_persistant": false
        },
        "allow_retry_canceled": false
    },
    "cors": {
        "allow_origins": [
            "*"
        ],
        "allow_methods": [
            "*"
        ],
        "allow_headers": [
            "*"
        ]
    },
    "s3": {
        "enable": false,
        "port": 5246,
        "ssl": false
    },
    "ftp": {
        "enable": false,
        "listen": ":5221",
        "find_pasv_port_attempts": 50,
        "active_transfer_port_non_20": false,
        "idle_timeout": 900,
        "connection_timeout": 30,
        "disable_active_mode": false,
        "default_transfer_binary": false,
        "enable_active_conn_ip_check": true,
        "enable_pasv_conn_ip_check": true
    },
    "sftp": {
        "enable": false,
        "listen": ":5222"
    },
    "last_launched_version": "v4.1.2"
}

日志(可选)

No response

复现链接(可选)

No response

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

The issue names no source files or tests. Start by reproducing a PUT upload larger than about 2 MB through /dav/115 using the supplied Python request, then trace the WebDAV upload handling and 405 response. Done means large files upload successfully while the existing small-file behavior remains intact.

Written by the indexing model from the issue text.

Assessment

Tech stack
go
Domain
api, backend
Issue type
Bug
Difficulty
4/5
Estimated time
3-5 days
Activity status
Quiet
Clarity
Mostly clear
Newbie friendliness
44/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.