Maybe I already said that in the last question...
I have a PHP script that is constantly updating a ZIP file using cronjobs.
While I have a VB.NET application running in the background and it is executed every 900 milliseconds .. This VB.NET application downloads the ZIP file using FTP.
Every time the ZIP file is updated.. I get "(550) File unavailable" error on the VB.NET application, but after I click "Continue" the new file is downloaded successfully.
I searched everywhere to ignore this error and prevent it from displaying but no benefit.
So what to do? The fix is in the PHP code? or the VB.NET code?
I already have a solution which is increasing the VB.NET application Timer to 5000 milliseconds (5 seconds) instead of 900 milliseconds .. But I really see the 900 milliseconds time is suitable because I want the file to be downloaded fastly.
EDIT: Increasing the timer failed, because the timer still might be running and the cronjob is executed at the sametime.
If there's any solutions then that's really great! else, I think the only solution is to increase the VB.NET application Timer, right?
Thanks!