views:

15047

answers:

11

Does anyone know how to get a progress bar for an upload in php? I am trying writing code for a photo album uploader. I would like a progress bar to display while the photos are uploading.

I am fairly new to php so I dont know everything about it.

+6  A: 

I'm sorry to say that to the best of my knowledge a pure PHP upload progress bar, or even a PHP/Javascript upload progress bar is not possible because of how PHP works. Your best bet is to use some form of Flash uploader.

AFAIK This is because your script is not executed until all the superglobals are populated, which includes $_FILES. By the time your PHP script gets called, the file is fully uploaded.

Macha
Why the three downvotes? It's true and they're completely unjustified. I dare anyone to show me a progress bar that runs on native PHP, and doesn't need extra extensions / Apache modules / perl scripts / other stuff to work.
Pekka
A: 

You would need to use Javascript to create a progress bar. A simple Google search led me to this article: WebAppers Simple Javascript Progress Bar with CSS.

Dojo File Upload Progress Bar Widget is another option using the Dojo Javascript framework.

EDIT: Assuming your uploading a large number of images (such as a photo album), and POSTing them to your PHP script, you could use javascript to read the results back from the post and update the progress bar based on the number of images uploaded / total number of images. This has the side effect of only updating after each post has completed. Check out here for some info on how to post with JS.

Joey Robert
-1 The Javascript progress bar is nice but has nothing to do with file uploads as far as I can see. And the Dojo upload progress bar is not providing any interface to PHP.Correct me if I'm wrong of course.
Pekka
+1  A: 

A php/ajax progress bar can be done. (Checkout the Html_Ajax library in pear). However this requires installing a custom module into php.

Other methods require using an iframe, through which php looks to see how much of the file has been uploaded. However this hidden iframe, may be blocked by some browsers addons because hidden iframes are often used to send malicious data to a users computer.

Your best bet is to use some form of flash progress bar if you do not have control over your server.

Ali Lown
Some add-ons might block iframes, but browsers? Can you give an example?
ya23
Googling the terms "ajax php file upload" returns 4 of the top 5 results all using iframes (not sure if the 5th does (page won't load)). Take a look at the examples on each of the sites.
Ali Lown
Indeed, they use iframes, but don't mention it can be blocked in any case. Or have I missed that?
ya23
Sorry, mis-read what you were trying to ask, no, I cannot give any examples of browsers that directly block iframes, I was thinking of the addons that people use with them such as noscript which blocks iframes. Updated text in post for future reference.
Ali Lown
A: 

I just found Mega Upload (http://www.raditha.com/php/progress.php) which uses perl do the uploading and display a progress bar.

Josh Curren
A: 

Hope this helps:

http://www.johnboy.com/php-upload-progress-bar

johnboy
+4  A: 

If you have APC installed, it has a callback hook for upload progress.

Rasmus Lerdorf (PHP's creator) has a sample of this using YUI (oh, and here's the PHP source).

R. Bemrose
A: 

flash upload will do the job. it will upload file where you want. But there is more demands than that for me. i need to change filename before upload is complete. this is also possible with flash solution BUT ONLY if you are adding FIXED variable. I need to add user ID to a filename and i see no way to do it.

nibuster
+1  A: 

Gears and HTML5 have a progress event in the HttpRequest object for submitting a file upload via AJAX.

http://code.google.com/apis/gears/api_httprequest.html#HttpRequestUpload http://developer.mozilla.org/en/Using_files_from_web_applications

Your other options as already answered by others are:

  1. Flash based uploader.
  2. Java based uploader.
  3. A second comet-style request to the web server or a script to report the size of data received. Some webservers like Lighttpd provide modules to do this in-process to save the overhead of calling an external script or process.

Technically there is a forth option, similar to YouTube upload, with Gears or HTML5 you can use blobs to split a file into small chunks and individually upload each chunk. On completion of each chunk you can update the progress status.

Steve-o
+1  A: 

Hi Guys,

Another uploader full JS : http://developers.sirika.com/mfu/

  • Its free ( BSD licence )
  • Internationalizable
  • cross browser compliant
  • you have the choice to install APC or not ( underterminate progress bar VS determinate progress bar )
  • Customizable look as it uses dojo template mechanism. You can add your class / Ids in the te templates according to your css

have fun

Valdelievre
+1  A: 

Christian Stocker also made a PHP module to help analysing file uploads: http://blog.liip.ch/archive/2009/01/22/uploadprogress-0-9-2-released.html

WishCow
+2  A: 

This is by far (after hours of googling and trying scripts) the simplest to set up and nicest uploader I've found

http://valums.com/ajax-upload/

It doesn't require APC or any other external PHP libraries, I can get file progress feedback on a shared host, and it claims to support html5 drag and drop (personally untested) and multiple file uploads.

Jesse