README (636B)
1 TINYBOX 2 ======= 3 4 An extremely primitive file uploader and host, written in PHP. 5 6 The values you may consider changing are at the top of the script, $destdir 7 and $maxsize. 8 9 Collisions are avoided by using the Unix timestamp to generate a filename. 10 EXIF data is stripped (requires PHP Imagick module). It does not remove files 11 after a period of time, this must be done manually. 12 13 The most likely reason you may experience an error uploading is that the 14 $destdir directory doesn't exist, or the user running the web server doesn't 15 have permission to write to it. 16 17 Why? Because I needed one, and implementing my own was a very simple task.