in reply to File upload progress?
I've seen one example, well kind of.
Indigoperl comes with a web-based package managment tool. Anyway, while you're downloading a new package in a forked process, the browser is being refreshed every 3 to 5 seconds, and is displaying a file that is constantly being updated with the progress, until the program is done writing to that temporary file, ie the package has been downloaded.
As for a file upload in increments, i guess it's possible, if you can figure out a way to read the file via cgi incrementally, and figure out where you left off.
I really don't see this as being beneficial to the user at all. It would take more time to upload that image (via cgi only), because the client would be sending the entire image from the start, not having any way of knowing where your script left off, aside from bytecount.
It sounds very much like you're trying to develop a server-side type of resumable upload(like resumable-download), but this would still require some type of program, asides from a browser, on the client side.
"Disclaimer: Don't blame, it came from inside the void"
#--------------------------------------------- crazyinsomniac
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: (crazyinsomniac) Re: File upload progress?
by batmonk (Scribe) on Feb 09, 2001 at 10:05 UTC | |
by crazyinsomniac (Prior) on Feb 09, 2001 at 11:39 UTC | |
by baku (Scribe) on Feb 09, 2001 at 20:48 UTC | |
by chipmunk (Parson) on Feb 09, 2001 at 21:17 UTC | |
by batmonk (Scribe) on Feb 09, 2001 at 23:27 UTC | |
by tilly (Archbishop) on Feb 10, 2001 at 11:25 UTC | |
by extremely (Priest) on Feb 10, 2001 at 04:11 UTC | |
by epoptai (Curate) on Feb 10, 2001 at 09:01 UTC | |
by crazyinsomniac (Prior) on Feb 10, 2001 at 03:53 UTC |