Anyone have the script that can remote upload files from another server with queue feature? like this <?php set_time_limit(0); ignore_user_abort(); print "<p>Getting</p>"; exec("wget http://cseti.homesite.net/afacademyufobook.rm"); print "<p>Done.</p>"; ?> Code (markup): You see this code can only do one file but I want to queue files so it will upload the next file when that file is completed
I'm not really understanding why you can't do any more than 1 at a time. Do you mean queue the uploads on seperate requests so that the first file will have started uploading and any further requests will wait till any pending uploads have completed?
What about using some sort of FTP system on your web page? You could use PHP's FTP functions to do this. For me this method would require the least amount of work to reach the solution that you're looking for.