3

我正在尝试使用以下代码将文件上传到 rackspace 云文件:

上传.html

<form action="upload.php" enctype="multipart/form-data" method="POST">
    File: 
    <input name="upload" type="file" /> 
    <input name="submit" type="submit" value="Upload To Rackspace!" />
</form>

上传.php

<?php

// include the API
require('cloudfiles.php');

// cloud info
$username = ""; // username
$key = ""; // api key

// Connect to Rackspace
$auth = new CF_Authentication($username, $key);
$auth->authenticate();
$conn = new CF_Connection($auth);

// Get the container we want to use
$container = $conn->get_container('resumetune');

// store file information
$localfile = $_FILES['upload']['tmp_name'];
$filename  = $_FILES['upload']['name'];

// upload file to Rackspace
$object = $container->create_object($filename);
$object->load_from_filename($localfile);

?>

现在我得到了令人发指的错误:

致命错误:在 C:\xampp\htdocs\rackspace\cloudfiles.php:1645 堆栈跟踪:#0 C:\xampp\htdocs\rackspace\cloudfiles.php 中未捕获的异常“BadContentTypeException”和消息“未设置所需的内容类型” (1962): CF_Object->_guess_content_type('C:\xampp\tmp\ph...') #1 C:\xampp\htdocs\rackspace\upload.php(24): CF_Object->load_from_filename('C:\ xampp\tmp\ph...') #2 {main} 在第 1645 行的 C:\xampp\htdocs\rackspace\cloudfiles.php 中抛出

那么有人对此有任何想法吗?提前致谢。

4

5 回答 5

5

在函数 _guess_content_type()中查看http://github.com/rackspace/php-cloudfiles/blob/master/cloudfiles.php它正在寻找内容类型,但没有找到它。您需要向 /share/magic 添加更多信息,或者如果您知道内容类型是什么,则可以在调用 load_from_filename 之前设置内容类型。

于 2010-02-20T18:58:13.743 回答
5

如果您没有可用的 mime 或 FileInfo 函数,这里是一个修复:

function _guess_content_type($handle) {

    $ext = ".".end(explode(".", $handle));
    switch($ext)
    {
        case 'jpg': $this->content_type = "image/jpeg"; break;
        case 'gif': $this->content_type = "image/gif"; break;
        case 'png': $this->content_type = "image/png"; break;
        default: $this->content_type = "image/jpeg"; break;
    }

    if ($this->content_type)
        return;

    if (function_exists("finfo_open")) {
        $local_magic = dirname(__FILE__) . "/share/magic";
        $finfo = @finfo_open(FILEINFO_MIME, $local_magic);

        if (!$finfo) 
            $finfo = @finfo_open(FILEINFO_MIME);

        if ($finfo) {

            if (is_file((string)$handle))
                $ct = @finfo_file($finfo, $handle);
            else 
                $ct = @finfo_buffer($finfo, $handle);

            /* PHP 5.3 fileinfo display extra information like
               charset so we remove everything after the ; since
               we are not into that stuff */
            if ($ct) {
                $extra_content_type_info = strpos($ct, "; ");
                if ($extra_content_type_info)
                    $ct = substr($ct, 0, $extra_content_type_info);
            }

            if ($ct && $ct != 'application/octet-stream')
                $this->content_type = $ct;

            @finfo_close($finfo);
        }
    }

    if (!$this->content_type && (string)is_file($handle) && function_exists("mime_content_type")) {
        $this->content_type = mime_content_type($handle);
    }

    if (!$this->content_type) {
        throw new BadContentTypeException("Required Content-Type not set");
    }
    return True;
}
于 2010-07-07T04:05:39.413 回答
1

如果您没有启用 FileInfo 扩展(自 PHP 5.30 起默认启用)。我建议您检查 mime_content_type() 函数是否可用。

似乎如果您两者都没有,则无法检测到 Content-Type。如果现在两者都不可用,我会得到FileInfo

于 2010-02-20T19:16:18.053 回答
0

我发现 Chris Bake 的解决方案很有帮助。我需要放一个“。” 在下面的每个扩展前面。

$ext = ".".end(explode(".", $handle));
switch($ext)
{
    case '.jpg': $this->content_type = "image/jpeg"; break;
    case '.gif': $this->content_type = "image/gif"; break;
    case '.png': $this->content_type = "image/png"; break;
    default: $this->content_type = "image/jpeg"; break;
}
于 2013-01-13T04:12:43.347 回答
0

您可能还想考虑使用更新的官方Rackspace PHP SDK这是创建对象的示例代码。

于 2013-01-13T20:44:47.530 回答