l360220954 2015-05-12 08:52 采纳率: 0%
浏览 4804

使用http put把本地文件上传到服务器的的时候碰到的问题

各位好,我在用libcurl的接口往localhost服务器上传文件里上传文件的时候出现了下面的错误(用的机器系统是linuxmint17,搭建的服务器Apache + PHP5 + MySQL)
*** We read 4257 bytes from file
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">


405 Method Not Allowed

Method Not Allowed

The requested method PUT is not allowed for the URL /index.html.


Apache/2.4.7 (Ubuntu) Server at localhost Port 80

上传程序的源码是:
/***************************************************************************

  • _ _ ____ _
  • Project ___| | | | _ | |
  • / __| | | | |_) | |
  • | (__| |_| | _ <| |___
  • ___|___/|_| ______| *
  • Copyright (C) 1998 - 2012, Daniel Stenberg, daniel@haxx.se, et al. *
  • This software is licensed as described in the file COPYING, which
  • you should have received as part of this distribution. The terms
  • are also available at http://curl.haxx.se/docs/copyright.html. *
  • You may opt to use, copy, modify, merge, publish, distribute and/or sell
  • copies of the Software, and permit persons to whom the Software is
  • furnished to do so, under the terms of the COPYING file. *
  • This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  • KIND, either express or implied. * ***************************************************************************/ #include #include #include #include

/*

  • This example shows a HTTP PUT operation. PUTs a file given as a command
  • line argument to the URL also given on the command line. *
  • This example also uses its own read callback. *
  • Here's an article on how to setup a PUT handler for Apache:
  • http://www.apacheweek.com/features/put */

static size_t read_callback(void *ptr, size_t size, size_t nmemb, void *stream)
{
size_t retcode;
curl_off_t nread;

/* in real-world cases, this would probably get this data differently
as this fread() stuff is exactly what the library already would do
by default internally */
retcode = fread(ptr, size, nmemb, stream);

nread = (curl_off_t)retcode;

fprintf(stderr, "*** We read %" CURL_FORMAT_CURL_OFF_T
" bytes from file\n", nread);

return retcode;
}

int main(int argc, char **argv)
{
CURL *curl;
CURLcode res;
FILE * hd_src ;
struct stat file_info;

char *file;
char *url;

if(argc < 3)
return 1;

file= argv[1];
url = argv[2];

/* get the file size of the local file */
stat(file, &file_info);

/* get a FILE * of the same file, could also be made with
fdopen() from the previous descriptor, but hey this is just
an example! */
hd_src = fopen(file, "rb");

/* In windows, this will init the winsock stuff */
curl_global_init(CURL_GLOBAL_ALL);

/* get a curl handle /
curl = curl_easy_init();
if(curl) {
/
we want to use our own read function */
curl_easy_setopt(curl, CURLOPT_READFUNCTION, read_callback);

/* enable uploading */ 
curl_easy_setopt(curl, CURLOPT_UPLOAD, 1L);

/* HTTP PUT please */ 
curl_easy_setopt(curl, CURLOPT_PUT, 1L);

/* specify target URL, and note that this URL should include a file
   name, not only a directory */ 
curl_easy_setopt(curl, CURLOPT_URL, url);

/* now specify which file to upload */ 
curl_easy_setopt(curl, CURLOPT_READDATA, hd_src);

/* provide the size of the upload, we specicially typecast the value
   to curl_off_t since we must be sure to use the correct data size */ 
curl_easy_setopt(curl, CURLOPT_INFILESIZE_LARGE,
                 (curl_off_t)file_info.st_size);

/* Now run off and do what you've been told! */ 
res = curl_easy_perform(curl);
/* Check for errors */ 
if(res != CURLE_OK)
  fprintf(stderr, "curl_easy_perform() failed: %s\n",
          curl_easy_strerror(res));

/* always cleanup */ 
curl_easy_cleanup(curl);

}
fclose(hd_src); /* close the local file */

curl_global_cleanup();
return 0;
}

请问这个问题是什么问题呢,如果是与服务器相关的权限问题,那这方面的东西又是怎么去配置的呢?
另外还有一个问题,上传到服务器上的文件路径是怎么设定的呢,默认的路径是/var/www/html/这个文件夹吗?

  • 写回答

1条回答

  • teclick 2015-05-12 08:54
    关注

    try use POST method

    评论

报告相同问题?

悬赏问题

  • ¥15 Arduino无法同时连接多个hx711模块,如何解决?
  • ¥50 需求一个up主付费课程
  • ¥20 模型在y分布之外的数据上预测能力不好如何解决
  • ¥15 processing提取音乐节奏
  • ¥15 gg加速器加速游戏时,提示不是x86架构
  • ¥15 python按要求编写程序
  • ¥15 Python输入字符串转化为列表排序具体见图,严格按照输入
  • ¥20 XP系统在重新启动后进不去桌面,一直黑屏。
  • ¥15 opencv图像处理,需要四个处理结果图
  • ¥15 无线移动边缘计算系统中的系统模型