PHP temp file names for uploads colliding - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T06:41:01Z http://stackoverflow.com/feeds/question/631871 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/631871/php-temp-file-names-for-uploads-colliding 2 PHP temp file names for uploads colliding noaheverett 2009-03-10T19:22:01Z 2009-03-10T20:34:03Z <p>When a user uploads a file, randomly it gets replaced by another user's upload, I've finally tracked down the issue to PHP and the tmp file name being reused. Is there a way to fix this? Is there a way to make better random names? It seems to degrade over time, as in the random file name seed gets weaker? This is on PHP 5.2.8 and FreeBSD 7.0</p> <p>Here is a log showing how the same tmp file name gets used and is overwritten by another upload: <a href="http://pastebin.com/m65790440" rel="nofollow">http://pastebin.com/m65790440</a></p> <p>Any help is GREATLY appreciated. I've been trying to fix this for over 4 months and has gotten worse over time. Thank you.</p> <p>EDIT: Keep in mind that this is not a PHP code issue, this is happening before it reaches any PHP code, the file received via $_FILES['name']['tmp_name'] is incorrect when it is received and its been traced back that it is being overwritten with someone else's upload before it reaches the upload processing script</p> http://stackoverflow.com/questions/631871/php-temp-file-names-for-uploads-colliding/631885#631885 -1 Answer by webclimber for PHP temp file names for uploads colliding webclimber 2009-03-10T19:25:57Z 2009-03-10T19:25:57Z <p>I would recommend using a GUID generator for the filename seeing that you are getting so many.</p> http://stackoverflow.com/questions/631871/php-temp-file-names-for-uploads-colliding/631893#631893 0 Answer by Vlad Romascanu for PHP temp file names for uploads colliding Vlad Romascanu 2009-03-10T19:28:10Z 2009-03-10T19:42:48Z <p>Is PHP running under apache, as <code>mod_php</code>?</p> <p>You may try to <strong><a href="http://www.php.net/mkdir" rel="nofollow">create a per-process temporary upload directory</a></strong> whose name contains your php <a href="http://us2.php.net/getmypid" rel="nofollow"><code>getmypid()</code></a>, then <a href="http://www.php.net/ini%5Fset" rel="nofollow"><code>ini_set</code></a> your PHP process' <code>upload_tmp_dir</code> to that directory. This will not work if a new <code>php</code> process is spawned for every request.</p> http://stackoverflow.com/questions/631871/php-temp-file-names-for-uploads-colliding/631898#631898 1 Answer by Andrew Clark for PHP temp file names for uploads colliding Andrew Clark 2009-03-10T19:28:58Z 2009-03-10T19:28:58Z <p>Move your files to a user dir after they have been uploaded. Those temp files should be removed.</p> http://stackoverflow.com/questions/631871/php-temp-file-names-for-uploads-colliding/631913#631913 3 Answer by R. Bemrose for PHP temp file names for uploads colliding R. Bemrose 2009-03-10T19:32:24Z 2009-03-10T19:32:24Z <p>It sounds like something is seriously wrong with either your PHP installation or whichever system call PHP is internally using to generate the random file names (most likely <a href="http://www.opengroup.org/onlinepubs/000095399/functions/tempnam.html" rel="nofollow">tempnam</a>).</p> <p>For everyone else: PHP handles uploaded files internally before the user code is ever processed. These names are stored in <code>$_FILES['file']['tmp_name']</code> (where 'file' is the (quoted) name of the file input element on the form).</p>