nginx-upload-module文件上传模块问题处理

git地址:[email protected]:vkholodkov/nginx-upload-module.git

下载地址:https://github.com/vkholodkov/nginx-upload-module/archive/2.2.0.tar.gz

编译问题: 错误:‘ngx_http_request_body_t’没有名为‘to_write’的成员

解决方法:参照此博客http://blog.csdn.net/igame/article/details/17477351


补丁下载地址:http://paste.davromaniak.eu/?dl=110


对于nginx-1.9.7版本

打了补丁后,还会存在如下错误:

ngx_http_request_body_save_filter’的静态声明出现在非静态声明之后 src/http/ngx_http_core_module.h:

就是最新版本的nginx中已经存在此函数ngx_http_request_body_save_filter,所以upload模块中不需要再声明了。

把upload-module中的声明注释掉、之后编译通过。两个函数大部分代码是相同的,没有测试功能是否都正常、只是编译通过了

你可能感兴趣的:(我自己的一些小小经验)