|
Re: Upload interrupted file resume with php
PHP typically has an upload limit set - 2MB I think. Even then, I'm not sure how big the files you're talking about, it may not even be that big of a problem to just re-upload.
Your best bet with PHP is utilizing it's FTP functionality...namely, "ftp_nb_put" with the FTP_AUTORESUME constant. It's a tough piece of code to write...which is why you'll have to weigh whether or not writing it is worth the hassle if people are only uploading <2MB or something.
|