You would think that tracking file upload progress would be a given now, from your browser you can create websites, edit pictures and communicate with millions of people. Only a few sites will actually show you your upload progress and they are few and far between. If anything they will show you a nice animated gif that gives you the illusion your file is being transferred.
It is very possible to track upload progress but I have some bad news for some of you. If you are hosted on a shared server like Hostmonster, BlueHost, etc… then odds are you will not have the right privileges to install the required modules. For those of you that have access to your own server or the capability to get it installed then read on.
You can download the full source for this by clicking here. But I strongly recommend you read this!
Installing APC
First we need to install APC created by PECL. Unfortunately there is no longer support for this on windows based machines but you can still find the dll floating around the internet if you look hard enough. If you do get the dll and you want to use it with WAMP or any other type of local setup simply place it in your php folder with the rest of the dll’s under the “ext” folder. If you are installing remotely like on a server you can use the “wget” function to grab the files and the “gzip” command to extract. There are plenty of resources which can show you how to install, I will show you how to set it up and use it.
Windows Users: If the dll you find does not work try a different version, I had to try 3 different ones to get it to work on my local box.
Once you have the package or dll installed in your machine you will need to edit your php.ini file to configure some settings on apc. Search your php.ini file for “extensions” and you should be presented with a list of them, you need to add the following line:
extension=php_apc.dll
//CentOS or similar
extension = “apc.so”
This will activate the file in windows or on your server. Next you will need to instruct APC to monitor file uploads by adding the following line to the php.ini:
RFC 1867 is a document that describes how HTTP file uploads work for those of you that are curious. The final step in setting up APC is simply restarting your server.
Monitoring File Uploads With APC…The Code
So here is the thing, we actually need to use a combination of things to make this work correctly. First we need to set up our form and a unique key that can be used to track the file progress. We also need a few JavaScript / Ajax functions which will allow us to track the upload without refreshing the page. Finally we need a php function which will report the progress back to us so we can display it on the page. Below is an overview of how it will all work.
I will explain this step by step:

Step 1: We post our form with the file we are uploading, the data is collected by our JavaScript functions and we remain on the same page.
Step 2: The JavaScript will post all of the data to the php upload file and start our php progress indication.
Step 3: We use a JavaScript function to pull the upload progress from our php progress file, the progress is being tracked based on the file being uploaded in our php upload file.
Step 4: We update the files status in our progress area on the webpage.
Creating Our Form and a Key to Track Progress:
At the top of the page where our form resides we will need to generate a random string of characters which will be used by the APC function to track the files progress. We will need to include that value in our form, your form should look like the following:
<form name="upload" onsubmit="javascript:uploadFile();" action="upload.php" target="upload_target" method="post" id="ajax_upload" enctype="multipart/form-data">
<input type="file" name="myfile" id="myfile"/><br />
<input type="hidden" name="APC_UPLOAD_PROGRESS" id="progress_key" value="<?php echo $uniqueID; ?>" />
<input type="submit" value="Upload" />
</form>
<div id="progress"></div>
<iframe id="upload_target" name="upload_target" style="width:0;height:0;border:0px solid #fff;"></iframe>
There is our basic form, it is very important to leave the name of the apc input the way it is. Notice there is a DIV with the id of “progress”, this is the area we will display the upload progress. We are also including a hidden iframe so that the form will post there and not refresh the page. Also take note of the function call in the form tag, the onsubmit calls our JavaScript function to track the upload, we will write this later.
Now lets set up some of the JavaScript and Ajax. In order for us to tell if something is being posted back to us from any of our scripts we must listen for them. We have two different types of listeners here, one for IE and another for most other browsers.
Listener
if(window.XMLHttpRequest) {
HttpListener = new XMLHttpRequest();
}
else if(window.ActiveXObject) {
HttpListener = new ActiveXObject("Microsoft.XMLHTTP");
}
We will use the above listener in our progress function.
Progress Function
if(HttpListener) {
HttpListener.open(‘GET’, ‘get_progress.php?uniqueID=’ + uniqueID, true);
HttpListener.onreadystatechange = function() {
if(HttpListener.readyState == 4 && HttpListener.status == 200) {
var response = HttpListener.responseText;
if (isNaN(response)){response=1; }
document.getElementById(‘progress’).innerHTML = Math.round(response) + "%";
if(response < 100) {
setTimeout(‘getProgress(‘+"’"+uniqueID+"’"+‘)’, 100);
}
else {
document.getElementById(‘progress’).innerHTML = "100% – Upload Complete!";
}
}
}
HttpListener.send(null);
}
}
What the above function does is send the uniqueID that we generated in the form to a file called get_progress.php(which we will write in a sec.) and listens for a response. When we receive a response from that file we update the results in our DIV progress back on our main page. You also see the “setTimeout” function, this calls the function over and over again which essentially posts to get_progress again and again thus updating our progress.
In order for this all to work we need one last piece of JavaScript, the actual function that sets the ball in motion:
var uniqueID = document.getElementById(‘progress_key’).value;
setTimeout(‘Progress("’ + uniqueID + ‘")’, 500);
}
This function grabs the uniqueID from the hidden input on the page and passes the value to our Progress function after half a second.
Progress:
The get_progress.php file mentioned above is very simple, here it is:
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header(‘Cache-Control: no-store, no-cache, must-revalidate’);
header(‘Cache-Control: post-check=0, pre-check=0′, FALSE);
header(‘Pragma: no-cache’);
if(isset($_GET[‘uniqueID’])){
$progress = apc_fetch(‘upload_’ . $_GET[‘uniqueID’]);
echo round($progress[‘current’]/$progress[‘total’]*100);
}
The get_progress.php file simply takes the uniqueID and calls the apc_fetch function which reports back an array of data about the file it is tracking. We are using “current” and “total” to come up with our percentage. The first four lines of this is to prevent some browsers from caching the original request, we force those to update each time this is called, otherwise the bar would appear frozen.
Last but not least, you need an upload.php script which will actually handle the file transfer, three lines and you are done:
$filepath = $filepath . basename( $_FILES[‘myfile’][‘name’]);
move_uploaded_file($_FILES[‘myfile’][‘tmp_name’], $filepath);
And that is it. When you break this code into sections and actually read how it all works, life becomes easy and this project becomes simple.
A note for those of you looking for a progress bar, the response sent from our get_progress.php is simply a number from 1 to 100. So you could take that number to create a very simple upload bar by creating a container DIV set to a width of 100px and place another container inside of that one set to an initial width of 0. You will need the internal div color to be set to whatever color you would like your bar and use JavaScript to update the inner div width based on the response.
For a progress bar on another site I used an animated gif as the background of my outer DIV and overlaid it with a transparent gif of the same dimensions for a really nice effect.
You can download the full source for this by clicking here. But I strongly recommend you read this entire article!
Good luck and have fun with this one.
![[del.icio.us]](http://scriptperfect.com/wp-content/plugins/bookmarkify/delicious.png)
![[Digg]](http://scriptperfect.com/wp-content/plugins/bookmarkify/digg.png)
![[dzone]](http://scriptperfect.com/wp-content/plugins/bookmarkify/dzone.png)
![[Facebook]](http://scriptperfect.com/wp-content/plugins/bookmarkify/facebook.png)
![[Furl]](http://scriptperfect.com/wp-content/plugins/bookmarkify/furl.png)
![[Google]](http://scriptperfect.com/wp-content/plugins/bookmarkify/google.png)
![[LinkedIn]](http://scriptperfect.com/wp-content/plugins/bookmarkify/linkedin.png)
![[MySpace]](http://scriptperfect.com/wp-content/plugins/bookmarkify/myspace.png)
![[Newsvine]](http://scriptperfect.com/wp-content/plugins/bookmarkify/newsvine.png)
![[Propeller]](http://scriptperfect.com/wp-content/plugins/bookmarkify/propeller.png)
![[Reddit]](http://scriptperfect.com/wp-content/plugins/bookmarkify/reddit.png)
![[Slashdot]](http://scriptperfect.com/wp-content/plugins/bookmarkify/slashdot.png)
![[Spurl]](http://scriptperfect.com/wp-content/plugins/bookmarkify/spurl.png)
![[StumbleUpon]](http://scriptperfect.com/wp-content/plugins/bookmarkify/stumbleupon.png)
![[Technorati]](http://scriptperfect.com/wp-content/plugins/bookmarkify/technorati.png)
![[Twitter]](http://scriptperfect.com/wp-content/plugins/bookmarkify/twitter.png)
![[Email]](http://scriptperfect.com/wp-content/plugins/bookmarkify/email.png)
You are saying your an independent web developer so can you support me in php coding. If possible.
Hi,
Thanks for the detailed explanation, it was very helpful. None the less I have a problem I hope the can help me with. When uploading a file my percentage is not being updated and sits on 0%. I am using a debian webserver which i have setup locally and have checked the following:
php.ini contains apc.rfc1867 = On and extension = “apc.so”
apc.so – is in the correct location set in the php.ini
increased apc.max_file_size and upload_max_filesize to 10m
tested with IE and FireFox
phpinfo.php – list apc and is enabled
Two things I have noticed:
1. The apc build date looks odd. I am running version 3.0.19 with a build date of Nov 27 2009 17:37:19. I checked this against http://pecl.php.net/package/APC where the release date for 3.0.19 is 2008-05-15, odd?
2. When uploading a file in IE I notice an “error on page” on the status bar.
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2)
Timestamp: Sat, 28 Nov 2009 12:08:53 UTC
Message: Object expected
Line: 1
Char: 1
Code: 0
URI: http://192.168.1.152/luke/
Any help with this would be greatly appreciated.
Thanks,
Luke
Upcoming Generation Clickjacking…
To perform the attack, a malicious website will load a page from the website inside an iframe, using CSS to hide all except the targeted region of the page….
Anti Aging Skin Care Products – Can They Make You Look Younger …
proviso you are comparable a assortment of women greater than 30, you are perhaps preliminary headed for unease concerning the dreaded w-word….
Lawn care tips with great solutions | Best tips lawn care programs …
Whether a residential area or commercial area, a striking lawn can be the difference in terms of aesthetic play. This is a great thing that you can now make ……
free hair growth tips…
my blog is about free hair growth tips…
Buy:Benicar.Amoxicillin.Aricept.Seroquel.Wellbutrin SR.Lipothin.Lipitor.Female Pink Viagra.Lasix.Advair.Nymphomax.Ventolin.SleepWell.Prozac.Acomplia.Buspar.Zetia.Cozaar.Female Cialis.Zocor….
Mercedes http://gzy.i3z.202i.ca : 190SL…
Mercedes…
…
1st factor , A large thanks to you to open my eyes….
…
I saw this really excellent post these days!…
…
Funny, I used to be discussing this factor with my older sister the other day, now I will have one particular more argument in my hand when it’ll come to confrontation when once more….
…
Very inspiring article, Many thanks !?!…
…
Curious to see what all you intellectuals need to say about this……….
…
good guidance and sharing,I will get this excellent for me .many thanks!…
…
I thought that was extremeley intriguing. Thanks with the unusual details. I’ll maintain subsequent this….
…
Here is definitely an region that may well be of help for you!…
Thank you……
Nice post?Thanks for sharing your such a nice person!…
Thank you……
Aw, this was a really good post. In theory I抎 like to write like this also – taking time and real effort to make a good article?but what can I say?I procrastinate alot and never seem to get anything done….
…
One more new write-up with powerful points, I’ve been a lurker right here for a short time but would like being a lot far more engaged from the long term….
…
I admire the useful info you offer in your articles. I will bookmark your weblog and have my kids check up the following usually. I am very sure they are going to learn a lot of new stuff below than anybody else!…
…
Cheers for this posting, guys, continue to keep up the excellent work….
great
Spyder Jackets
Discount Spyder
Spyder Jackets
nikeid.com
NIKE ID
moncler jackets
moncler jackets
NIKE OUTLET.com
NIKEOUTLET.COM
…
good advice and sharing,I will get this great for me .thank you!…
if you loss yourself,look at sky ,god will bless you.
I’m here really is fantastic,everyone will loves.
Moncler
Give me a place to stand I speak the earth cocked up
Moncler Jackets
i don’t know why i don’t know what,but i just know you
discount moncler
Yesterday is past tomorrow will only better.Great, too smart, too good to be.
moncler outlet
…
Hi, where by did you get this information can you please help this with some proof or you might say some beneficial reference as I and others will truly enjoy. This details is truly very good and I will say will always be valuable if we attempt it chan…
The Zerg…
The zerg are a terrifying and ruthless amalgamation of biologically advanced, arthropodal aliens. Dedicated to the pursuit of genetic perfection, the zerg relentlessly hunt down and assimilate advanced species across the galaxy, incorporating useful ge…
This is my problem…
Amazingly webpage, I like how your page looks! The layout is amazing!…
…
Me and my friend had been arguing about an matter similar to this! Now I know that I had been proper. lol! Thanks for your facts you article….
…
This blog is excellent. How did you come up witht he idea?…
Moncler
Moncler Jackets
moncler women
moncler men
…
1st thing , A large thanks for you to open my eyes….
This is my problem…
Amazingly webpage, I like how your page looks! The layout is great!…
Another Title…
I saw this really great post today….
Life goes on…
In three words I can sum up everything I have learned about life: It goes on….
…
Thank you for that wonderful post. I’ll take the notes you’ve written….
Moncler
Moncler Jackets
moncler men
moncler women
moncler women down
moncler jackets women
moncler men
moncler jackets outlet
Today, all you need is to let your fingers do the walking on the keyboard. Sites like Westport’s carry wrestling and burberry outlet. This mountain range of sports at any outdoor activity such as ice climbing shoes, hiking or kayaking can be ordered. You can even find vegan sports shoes that are environmentally friendly and use no animal products.
This requires that they also wear an outfit more closely than they might be using in everyday life – such as
abercrombie and fitch outlet, shoes and a shirt or jacket. Since students are on footwear, is important to have a training area that has the ability to make the shoes a beating.
I like this bloge!
For the irresistible combination of comfort and style, check out the 4 Inch Women’s Sexy Thigh High <a href="burberry outlet with Ultra Wide Shaft or the 5 Inch Ultra Wide Shaft Sexy High Heel Boot with side zip up. These ultra wide shaft boots offer the much needed room for your happy feet while the sexy pointed heels add the much desired style quotient.
Although spyder started as outerwear, great patented raincoats and military wear over the years the famous checks dominated the skirts, the perfume boxes and presently the handbags. Robert Menchetti, the Italian designer who took over Burberry in 1999 made great progress in Burberry’s stake at the handbag market. Burberry defined the fashion of British elite from
moncler men to the royalty – Prince William, from David Beckham to Kate Winslet – red carpet or not, Burberry fashion came up and about in the social circle.
I used to think that Cheap uggs outlet UK were the ugliest cheap ugg bootsI had ever seen. You can wear Mini ugg classic tall boots On Saleon the coldest day and your feet will be warm or you can wear them on the hottest day and uggs outlet your feet won’t sweat.
Wonderful write-up! I’ll subscribe appropriate now wth my feedreader software package!
Just wanted to say……
happy holiday…
ArgonHosting.com…
Saw this great post today, passing it on…
Your {blog|site} is {realy|very|fun} and {interesting|cool|nice|good} .{Its not like|it is not like|Its not similar to} all {those|these} auto-blogs {popular|that are many around} now. Its a {live|real} one. Its {cool|nice|great|good}!…
Your blog is nice to read, because you have your own manner of writing. By the way this post is even cooler than usual….
thanks a lot. your website is very good! i likeit was a great story. Stop by the news site if you get a chance. Have a good one.
…
Cheers for the facts. Significantly appreciated….
Have you ever heard of ugg boots? It is a kind of Sheepskin UGG Boots !If you want to be fashion, just have a look atour cheap ugg boots, ugg boots discount, Ugg Boots Sale, ugg hat sale, Sheepskin UGG Boots Discount!! You will feel comfortable and warm with these Sheepskin UGG Boots Sale, cheep ugg on sale, Discount UGG Boots, discount ugg boots, Sale Ugg Boots. Well, our ugg company have various of Sheepskin UGGBoots On Sale, ugg hat and scarves on sale, Discount UGG Boots cheap, ugg hat and scarves discount, ugg handbags, ugg handbags discount, ugg hat and scarves. If you have tried them on, you will be much more confident in your life, welcome to our Ugg Boots On Sale company, get yourloved Ugg Boots Discount, ugg handbags sale, Ugg Boots on Discount, cheep ugg handbags, Cheap Ugg Boots Sale! These shoes are well worth buying, take action now, Ugg Boots Sale Discount and Cheap Sheepskin Ugg Boots are waiting foryou here!!
Our company have broad styles of ugg products ,you can feel free to choose Ugg Classic Metallic Boots, ugg classic boots, Ugg Bailey Button 5803, ugg products on sale, Ugg Bailey Button Triplet 1873, ugg products classic, Ugg classic short 5825, ugg on sale Ugg classic tall5815, ugg products, Ugg romantic flower. Ugg boots discount Ugg ultra short 5225, Ugg ultra tall 5245, and so on. Surely you can make yourself happy and satisfied!!
However fashion trend changes, simple, classic and chic styles remain quintessential. All of those factors are achievedby ugg products .why not have Ugg classic cardy 5819, Ugg nightfall -5359 Or Ugg classic mini 5854 in your closet? Do you want to show your own personality? Do you have a desire to boost your confidence? You will be attracted inthe crowd with fashionable Ugg sundance ii 5325, Ugg handbags, Ugg gloves as well as Ugg hat scarves !!so ,take action now ,my dear friends !!
To Find discount chanel purses for sale,buy chanel handbags online and purses,just click to enter our website to enjoy your wonderful shopping experiece.
Moncler Brand is keeping a fashion trend for such a long time. The beloved clothing are Moncler Jakcets and Moncler Coats. Exquisite Moncler Jackets, Moncler Coats, Moncler! : 2011 Newest Moncler Jackets – Moncler Men Moncler Women Moncler Children Moncler shoes Moncler Trench Coats Moncler Hats and Scarves Moncler Men Pants 2011 Newest Moncler Jackets ecommerce, open source, shop, online shopping
Moncler
Moncler jackets
I am not much into reading, but somehow I got to read nice information on your site. Simple to understand and helpful. We will look forward for your future updates. Thanks!