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

Popular posts from this blog

python - Overriding the save method in Django ModelForm -

html - CSS autoheight, but fit content to height of div -

qt - How to prevent QAudioInput from automatically boosting the master volume to 100%? -