vote up 4 vote down star
5

Does anyone know of any methods to create a file upload progress bar in PHP? I have often heard that it's impossible.

I have one idea, but not sure if it would work: have a normal file upload, but instead submit to an iframe. When this is submitted, store the file information (size and temp location) in the session. At the same time, start an AJAX call to every say 10 seconds to check the size of the file compared to the size stored in the session. This would return the size to the AJAX and then a progress bar would be sized and maybe display the uploaded size to the user.

Thoughts?

flag

70% accept rate

9 Answers

vote up 3 vote down check

You can try YUI or Prototype or JQuery

link|flag
jQuery looks like the best way to go! Thxs, didn't know it had an addon. – Darryl Hein Oct 1 '08 at 19:58
vote up 0 vote down

Cannot we use progress bar using only php

link|flag
vote up 0 vote down

You will definately want to go with digitgerald's FancyUpload. It's Mootools & swfuplaod based, and it sports a nice queue with statusses, progress, eta etc. It's really the slickest method i've seen for uploading files. For my personal use case ivé used it to let the client select 1.2 gb of PDF files and upload them. Newer ones get renamed and versioned automatically, same are skipped, etc.

link|flag
vote up 0 vote down

I'd recommend looking at SWFUpload to accomplish what you want. It's fairly flexible and supports queueing of files, so you could even handle multi-file uploads.

link|flag
vote up 0 vote down

In my opinion, the best / easiest solution is to build a small flash widget, that consists of an 'Upload' button and a progress bar. Flash gives you very detailed feedback on how much data has been uploaded so far, and you can build a nice progress bar based on that. Doesn't require inefficient polling of the server, and in fact doesn't require any changes at all to your server code. Google for 'flash uploader' and you'll find many people have already written these widgets and are happy to sell them to you for a buck.

link|flag
vote up 5 vote down

So far, the most common way of doing this is SWFUpload: http://www.swfupload.org/

However, it is possible with pure PHP, just very difficult and very experimental. I'll see if I can find the link.

Edit: According to comments on php.net, as of 5.2 there is a hook to handle upload progress. http://us.php.net/features.file-upload#71564

More explanation:

Rasmus' Example:

link|flag
vote up 6 vote down

You're pretty much figured out how to do it. The main problem is you usually don't have access to the size of the uploaded file until it's done uploading.

There are workarounds for this: Enabling APC, you to access this information if you include a field called "APC_UPLOAD_PROGRESS" and use apc_fetch() for retrieving a cache entry with the status.

There's also a plugin called uploadprogress but it's not very well documented and doesn't work on Windows (last I checked anyway).

An alternative is to use Flash for doing it. See scripts like FancyUpload.

Before APC came along I had to write a CGI script in C that wrote information to a text file. APC seems like a much better way to do it now though.

Hope this helps.

link|flag
When I saw this question, APC's upload progress thing came to mind as well. I know that Rasmus even created a sample for it somewhere, but I can't find it now. – R. Bemrose Oct 1 '08 at 18:04
Rasmus: progphp.com/progress.phps – davethegr8 Oct 1 '08 at 18:14
vote up 0 vote down

"Old school", but a PHP + Perl technique: http://www.raditha.com/php/progress.php

link|flag
vote up 0 vote down

In pure PHP, you are correct: it's not possible.

If you AJAX-ify this, then you could do what you're describing. The only progress meters I've ever seen are in Javascript or Flash, though I imagine Silverlight could do it also.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.