accessing the upload file in progress using django + nginx + apache mod_wsgi -
I know that when we upload on a web application that uses any of the settings, The upload file can not be accessed by the server before it is received.
So my question is, is there any way to check / access the progress of the total byte of the upload file?
Thank you
You monitor your upload progress by typing your own zengo upload handler can do. You only need to implement the subclass django.core.files.uploadhandler.FileUploadHandler and received_data_chunk and file_complete methods.
Django gives you the necessary details.
Comments
Post a Comment