PHP resumable upload. Help needed!

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
User avatar
Weirdan
Moderator
Posts: 5978
Joined: Mon Nov 03, 2003 6:13 pm
Location: Odessa, Ukraine

Re: PHP resumable upload. Help needed!

Post by Weirdan »

HTTP has no support for resumable uploads, so you will likely need your own protocol on top of HTTP to do this.
ell0bo
Forum Commoner
Posts: 79
Joined: Wed Aug 13, 2008 4:15 pm

Re: PHP resumable upload. Help needed!

Post by ell0bo »

That's more of a functionality of a browser then something you can handle pragmatically on the server side. Now, I can think of ways you could do it, but I won't go into them because they'd be more hacks then anything that works the way you'd expect it.

You may want to look at your design, and question if you really need this functionality. If you do, you might want to go into a little more detail as to why you need it and what you're doing.
Post Reply