jquery fileupload - missing header HTTP_CONTENT_RANGE [closed]

5 days ago 15
ARTICLE AD BOX

I have used fileupload successfully to select multiple files and upload them to a PHP server. The files can be large (up to 250 MBytes), and I am uploading the files in segments, reassembling them in the server, using PHP derived from the example of blueimp's website.

But I now need to derive an adjusted filename for each selected file before uploading.

I have used a separate <input type-'file'> field to let the user select the required files, and I have stored the data in an arrary of File objects.

I have used the fileupload 'send' method to then submit the files. But when the data arrives at the server, the HTTP_CONTENT_RANGE header is missing, causing the PHP to fail.

Is there a real problem here? SHould I be doing something different?

Read Entire Article