Is there any way to check if file has been uploaded completely on the server? My scenario: User uploads file over ftp and my other PHP task is running in cronjob. Now I would li
Check for the file after uploading by next code
if (file_exists('http://www.domain.com/images/'.$filename)) : // Write some response as you like as a success message endif;
Notice: you have to change images path by yours ,
good luck :)