lua-resty-upload icon indicating copy to clipboard operation
lua-resty-upload copied to clipboard

Streaming reader and parser for http file uploading based on ngx_lua cosocket

Results 21 lua-resty-upload issues
Sort by recently updated
recently updated
newest added

hi,I use lua-resty-upload to handle big file upload, I use an extension of this version which have the part-split upload function, [repos link](https://github.com/zhjx922/lua-upload/blob/master/lua/upload.lua), when the last part upload complete, the...

The ngx.var API only returns a Lua string in case of success or `nil` if failure. So check whether the header is a Lua table is superfluous.

init a body buffer and append the data into the body buffer when consume the socket data

Hi, I am following below code on fedora Linux with nginx: `````` local resty_sha256 = require "resty.sha256" local upload = require "resty.upload" local chunk_size = 4096 local form = upload:new(chunk_size)...

lua entry thread aborted: runtime error: /usr/local/openresty/lualib/resty/upload.lua:61: http v2 not supported yet

Hi, my version is openresty/1.9.15.1, When I upload 2MB+ size file I got "nginx: lua atpanic: Lua VM crashed, reason: unknown reason" Error, I could upload 100KB file successfully. Seems...

支持断点续传和分块传输吗?

here is the code ``` lua local upload = require "resty.upload" local json = require "cjson" local s3_upload = require "resty.s3_upload" local form, err = upload:new(chunk_size) if not form then...

Add support of decoding the multipart form data as lua table. By this feature, we can get the lua table which contains the fields from the submitted multipart form data;...

I have some code like this ``` ngx.ctx.uploads={} --m.getupload() ngx.req.read_body() ngx.ctx.posts={} args, err = ngx.req.get_post_args() for key, val in pairs(args) do ngx.ctx.posts[key]=val ngx.ctx.gets[key]=val ``` and m.getupload is using your library,...