PHP file uploads being "hijacked" by partial uploads - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T20:18:20Z http://stackoverflow.com/feeds/question/609064 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/609064/php-file-uploads-being-hijacked-by-partial-uploads 2 PHP file uploads being "hijacked" by partial uploads noaheverett 2009-03-04T02:38:35Z 2009-03-04T08:04:37Z <p>I have a site that is receiving 30-40k photo uploads a day and I've been seeing an issue pop up with more frequency now. This issue is this:</p> <p>Our upload script receives (via $_FILES['name']['tmp_name']) a file (photo) that was NOT uploaded by the user &amp; the majority of the time the file received is a "partial" upload.</p> <p>Of course at first I thought it was my PHP code making a simple mistake and I've spent days looking over it to make sure, but after placing checks in the code I've found that the file received via a HTTP POST upload to PHP is actually the wrong file. So the issue is happening before it reaches my code. The tmp file (phpxxxx) received by the script is sometimes incorrect, as if it was somehow being overwritten by another process and its usually overwritten by a file that was partially uploaded.</p> <p>Has anyone every seen an issue like this? Any help is greatly appreciated. I'm turning to this as a last resort after days of searching/asking other PHP devs</p> <p>So to recap:</p> <ul> <li>User uploads a photo</li> <li>PHP script receives a file that was not uploaded by the user (pre code, via $_FILES in /var/tmp)</li> <li>Usually the incorrect file received is a partial upload or a broken upload</li> <li>It seems to happen randomly and not all the time</li> </ul> http://stackoverflow.com/questions/609064/php-file-uploads-being-hijacked-by-partial-uploads/609598#609598 1 Answer by SchizoDuckie for PHP file uploads being "hijacked" by partial uploads SchizoDuckie 2009-03-04T07:42:59Z 2009-03-04T07:42:59Z <p>First off, check you PHP version.</p> <p>Second, check your file upload limits and POST_MAX_SIZE in php.ini</p> <p>It might just be that someone tries to upload a file that's too large :-)</p> http://stackoverflow.com/questions/609064/php-file-uploads-being-hijacked-by-partial-uploads/609654#609654 1 Answer by Andrew Swift for PHP file uploads being "hijacked" by partial uploads Andrew Swift 2009-03-04T08:04:37Z 2009-03-04T08:04:37Z <p>Can you try different names for the temp file to avoid its being overwritten? Can you identify the origin of the new, incorrect and incomplete file?</p> <p>Is this a development environment? Is it possible that more than one user is uploading files at the same time?</p> <p>Try your program with very small images to check if SchizoDuckie is correct about filesize problems.</p> <p>Try with different navigators to eliminate the admittedly remote possibility that it is a local problem.</p> <p>Check permissions on the directory where the temp file is stored.</p>