LibCURL上传文件从c++到PHP - 411长度要求


LibCURL upload file from C++ to PHP - 411 length required

我试图用LibCURL, c++和php从我的本地机器上写一个文件到服务器,我遇到了一个错误,而不是完成表单,我得到的错误消息"411长度所需"。

我正在从这个例子

http://curl.haxx.se/libcurl/c/postit2.html

这是我的php表单,我已经验证为工作

<!DOCTYPE HTML> 
<html>
<head>
</head>
<body> 

 <form method="post" enctype="multipart/form-data" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>"> 
 Enter file: <input type="file" name="sendfile" size="40">
 <input type="submit" value="send" name="submit">
 </form>
<?php
echo “request method: " . $_SERVER[REQUEST_METHOD];
if( "$_SERVER[REQUEST_METHOD]" == "POST" || "$_SERVER[REQUEST_METHOD]" == "PUT")
{
    echo "Success <br>";
    if( $_FILES['sendfile']['name'] != "" )
    {
        $target_dir = "test/";
        $target_file = $target_dir . basename($_FILES["sendfile"]["name"]);
        if (move_uploaded_file($_FILES["sendfile"]["tmp_name"], $target_file)) 
        {
            echo "The file ". basename( $_FILES["sendfile"]["name"]). " has been uploaded.";
        } 
        else 
        {
            echo "Sorry, there was an error uploading your file.";
        }
    }
    else
    {
        die("No file specified!");
    }
} 
?>
</body>
</html>

这是libcurl代码,除了设置上传文件部分的三行代码外,它非常忠实于示例。这是我在一个不同的例子中尝试过的。

//setup   
curl_global_init(CURL_GLOBAL_ALL);
handle = curl_easy_init();
post = NULL;
last = NULL;
header_list = NULL;
uploadFile = NULL;
curl_easy_setopt(handle, CURLOPT_NOPROGRESS, ofGetLogLevel() <= OF_LOG_VERBOSE ? 0 : 1);
curl_easy_setopt(handle, CURLOPT_SSL_VERIFYPEER, true);
curl_easy_setopt(handle, CURLOPT_VERBOSE, ofGetLogLevel() <= OF_LOG_VERBOSE);
curl_easy_setopt(handle, CURLOPT_CAINFO, ofToDataPath("cacert.pem").c_str());
curl_easy_setopt(handle, CURLOPT_WRITEFUNCTION, content_writer);
curl_easy_setopt(handle, CURLOPT_WRITEDATA, &content);
curl_easy_setopt(handle, CURLOPT_HEADERFUNCTION, header_writer);
curl_easy_setopt(handle, CURLOPT_WRITEHEADER, &header);
//seturl
curl_easy_setopt(handle, CURLOPT_URL, “link to hosted php file on server”);
//add form field
curl_formadd(&post, &last, CURLFORM_COPYNAME, "sendfile", CURLFORM_FILE, “filepath on my local system”, CURLFORM_END);
//set upload file
FILE* uploadFile = fopen(“filepath on my local system”, "rb");
curl_easy_setopt(handle, CURLOPT_UPLOAD, 1);
curl_easy_setopt(handle, CURLOPT_READDATA, uploadFile);

//perform
CURLcode ret = curl_easy_setopt(handle, CURLOPT_VERBOSE, ofGetLogLevel() <= OF_LOG_VERBOSE);
ret = curl_easy_setopt(handle, CURLOPT_NOPROGRESS, ofGetLogLevel() <= OF_LOG_VERBOSE ? 0 : 1);
ret = curl_easy_setopt(handle, CURLOPT_HTTPPOST, post);
ret = curl_easy_perform(handle);
curl_formfree(post);
post = NULL;
fclose(uploadFile);
uploadFile = NULL;

我已经尝试添加一个标题与字符串"Content-Length: 0"answers"Content-Length: 44000"(测试jpg的大小),但都没有改变错误。

上面也有类似的问题但只有一个用的是c++也就是这个

c++, libcurl PUT请求

但是它不太适合我的情况,也没有提供任何答案。

设置CURLOPT_INFILESIZE如下:curl_easy_setopt(handle, CURLOPT_INFILESIZE, 44000);