I searched similar requests/questions, but nothing seems to match my situation.
I use a PHP file to send/output uploaded files to the browser. I call the PHP file a "reader" file. The following is a boiled down version of the reader (with additional file types removed for simplicity):
<?php
if($_GET['upload']){ // for files uploaded via CMS uploader
$file = $site_directory . $uploads_path . $_GET['upload'];
}
if (file_exists($file)) {
header('Content-Description: File Transfer');
// JPG
if(strstr($file,".jpg"))
{
header('Content-type: image/jpeg');
header('Content-Disposition: inline; filename='.basename($file));
// OTHER FILE TYPES
}else
{
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
}
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}else{
echo "<p>That file does not exist.</p>";
}
?>
As you'll see in the following example, it generally works. But when the browser has to load several images this way, some won't load/appear as broken. You can see an example of it in action here: http://www.technotarek.com/index.php?id=25&view=grid. If you don't see any broken images in the photo grid at first, try a few hard refreshes.
Any ideas why this isn't reliable for multiple files/images?
Note that I have an additional script that re-sizes the images on the example, but that is not the culprit. I removed it and the problem remained.
More Background (on why I'm using this method): I originally started using the reader script/file on sites where the server admins didn't allow uploads to the webserver, but instead required all user uploads to be stored on a separate sandlot server. The "reader" file allows me to access and output those files, because a direct URL to the sandlot files is not possible.
http://example.com/script.php?upload=../../../../../../../../seekrit.passwords. Hope you don't have anything you want to keep private. – Marc B Oct 26 '11 at 16:02