Linked Questions

0 votes
1 answer
6k views

I am trying to add a simple progress bar/number to my PHP image upload. If javascript is enabled, this script shall work, but now, it immediatly shows 100%, before everything has been uploaded, and ...
haheute's user avatar
  • 2,209
0 votes
0 answers
574 views

I am trying to display progress indicator with my ajax file upload form. Upload is working fine. I tried to integrate progress indicator using various sources, but nothing worked. Here is my ajax code ...
Ammu Hari's user avatar
1 vote
0 answers
143 views

I'm trying to know how many MB are uploaded on my server and I don't really know how to do it. I send my files with a DataForm. The Javascript : <script> var fichier = document....
Elowarp's user avatar
  • 11
-1 votes
2 answers
103 views

i have a problem with uploading file to the server im using php my code works fine and sure its fast because im uploading it to localhost but how can i create a progress bar something that will update ...
knowmeifyou's user avatar
3163 votes
34 answers
1.5m views

I would like to upload a file asynchronously with jQuery. $(document).ready(function () { $("#uploadbutton").click(function () { var filename = $("#file").val(); $.ajax({...
Sergio del Amo's user avatar
575 votes
8 answers
1.1m views

The XMLHttpRequest Level 2 standard (still a working draft) defines the FormData interface. This interface enables appending File objects to XHR-requests (Ajax-requests). Btw, this is a new feature - ...
Šime Vidas's user avatar
10 votes
1 answer
45k views

I have a lot of problem to upload multiple images using AJAX. I write this code: HTML <form id="upload" method="post" enctype="multipart/form-data"> <div id="drop" class="drop-area"> ...
Ivijan Stefan Stipić's user avatar
2 votes
4 answers
9k views

Trying to make a progress bar for a form upload (old HTML4 form upload, not new HTML5 API). The progress actually tracks additional work being done after the file has moved. The way it has been ...
Greg Pettit's user avatar
  • 10.8k
6 votes
1 answer
10k views

I have written code to upload a file in Django as follows: def upload(request): if request.method == 'POST': form = UploadFileForm(request.POST, request.FILES) if form.is_valid(): ...
Mahendra Liya's user avatar
0 votes
2 answers
6k views

I am uploading files I want to get progress length using jquery we are getting default progress in bottom in chrome browser or other browsers so I want get that progress using jquery or ajax and ...
user3396954's user avatar
2 votes
2 answers
2k views

I am trying to add a client side progress bar to JSF2.2 ajax requests. What I would ideally like to do is get the request header size and receive updates for the status of the POST. I do not ...
Ioannis Deligiannis's user avatar
0 votes
1 answer
5k views

First off I want everyone to understand I did look at all of the other examples on stackoverflow, but none have worked for me at all. What I want to do is create a progress bar which shows the how ...
webdevhelp's user avatar
0 votes
1 answer
6k views

I am redesigning an app and I am trying to get a bootstrap progress bar to show the percentage of the upload progress instead of the gif that just says "please wait". I think I need to add an Event ...
Greyhammer's user avatar
1 vote
2 answers
5k views

I want to use a file upload progress. Can anybody give possible simple code for showing upload progess bar. On the next code. There is file receiving file upload.php <?php if ($_FILES) { ...
user2301515's user avatar
  • 5,137
2 votes
3 answers
2k views

I want to prevent a user from leaving my site while their file is being uploaded to my server. So I can send an alert message to a user using this javascript... window.onbeforeunload = function() { ...
Nodedeveloper101's user avatar

15 30 50 per page