Jump to content

PHP Download file to server and update a status bar


rukas

Recommended Posts

I have a PHP script with HTML embedded in it.

 

This script downloads files to the local server(that the script is hosted on) based on a submission from a form. The files are quite large so I'd like to show a progress bar of the download on the webpage. How do I download the files and update the progress bar with the percentage complete for each?

 

Thanks in advance,

Rukas

Link to comment
Share on other sites

Easiest way would be with APC, second most with a database. The script doing the download needs to know how far it's gone and possibly how much further it needs to go (if you want that). As it's downloading it updates whatever location you want with its progress. The progress bar and corresponding AJAX read that data.

 

Note you can't use copy() or file_get_contents() for this - has to be a fopen/fread/fclose loop. Although cURL is powerful, it might have something relevant.

Edited by requinix
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.