通过 PHP API 将图像/非文本文件上传到 Rackspace Cloudfiles 时出现问题 (MisMatchedChecksumException)

发布于 2024-12-06 22:03:41 字数 264 浏览 2 评论 0原文

我在上传到 Rackspace Cloudfiles 时遇到问题。

我可以上传任何基于文本的内容(text/html、text/plain 等),但我尝试的任何其他内容都会失败并出现 MisMatchedChecksumException,据我所知,这意味着我这边的 md5_file() 与他们的计算不匹配在他们的最后?

如果我不设置 etag(因此不进行此检查),文件会上传但不正确,例如图像具有相同的大小但只是不渲染?

有人有任何关于如何克服这个问题的建议吗?

I am having an issue uploading to Rackspace Cloudfiles.

I am able to upload anything that is text based (text/html, text/plain etc) but anything else I try fails with the MisMatchedChecksumException which, as I understand it, means the md5_file() on my end doesn't match their computation at their end?

If I don't set the etag (and so this check is not made) the file is uploaded but not correctly, so for example images have the same size but just don't render?

Does anyone have any tips for how to get past this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

诗化ㄋ丶相逢 2024-12-13 22:03:41

下面的代码对我来说工作得很好,你能显示一个不起作用的代码片段吗?

    $fname = basename('test.jpg');
    $md5 = md5_file($fname);
    $container = $conn->get_container('my_container');
    $o2 = $container->create_object($fname);
    $o2->content_type = "image/jpeg";
    $o2->set_etag($md5);
    $result = $o2->load_from_filename($fname);
    assert('!is_null($result)');
    assert('$o2->getETag() == $md5');

The following code works fine for me, can you show a snippet that doesn't work?

    $fname = basename('test.jpg');
    $md5 = md5_file($fname);
    $container = $conn->get_container('my_container');
    $o2 = $container->create_object($fname);
    $o2->content_type = "image/jpeg";
    $o2->set_etag($md5);
    $result = $o2->load_from_filename($fname);
    assert('!is_null($result)');
    assert('$o2->getETag() == $md5');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文