You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to get plupload-java-runtime working with django (using mod_python), which doesn't appear to support non-multipart uploads containing binary data.
The main Plupload runtimes support a boolean configuration option "multipart" that, when enabled, uses mutlipart instead of direct binary streams. (source: http://www.plupload.com/documentation.php)
Please add this functionality to plupload-java-runtime.
Thanks!
The text was updated successfully, but these errors were encountered:
It's silly, but if the request's content type is not multipart, django won't ever call handle_raw_input. Here's a walk through some of the relevant code:
I eventually figured out how to create Django middleware to handle an application/octet-stream upload: https://gist.github.com/2989928
As a result, this is no longer a pressing need for me, but I still think it is a valid feature request in that it will improve compatibility with the other Plupload runtimes. So I'll leave it up to you, @jakobadam, to decided if this issued should be closed or not.
I'm trying to get plupload-java-runtime working with django (using mod_python), which doesn't appear to support non-multipart uploads containing binary data.
The main Plupload runtimes support a boolean configuration option "multipart" that, when enabled, uses mutlipart instead of direct binary streams. (source: http://www.plupload.com/documentation.php)
Please add this functionality to plupload-java-runtime.
Thanks!
The text was updated successfully, but these errors were encountered: