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.
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.
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).
See the documentation here.
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.
I just found Mega Upload (http://www.raditha.com/php/progress.php) which uses perl do the uploading and display a progress bar.
Gears and HTML5 have a progress event in the
HttpRequest
object for submitting a file upload via AJAX.http://developer.mozilla.org/en/Using_files_from_web_applications
Your other options as already answered by others are:
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.
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.
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.