I have a simple function to output an icon for a file type next to the file, but for some reason file_exists() always returns false. I have output the path that is being generated, and it clearly exists for 'default.png'. Am I missing something here?
I have tried useing the URL and the file path - both always return false.
I even set all files permisisons to 777 to test if that was the issue, but that did not work.
/**
* Displays the logo for the file type passed to the function
*
* @param required string $file_type The file type to display an icon for
*/
function show_file_type($file_type){
$file_types_folder = get_bloginfo('template_directory').'/includes/images/file_types/';
if(file_exists($file_types_folder.$file_type.'.png')) :
$file_type_image = $file_types_folder.$file_type.'.png';
elseif(file_exists($file_types_folder.'default.png')) :
$file_type_image = $file_types_folder.'default.png';
else :
return false;
endif;
echo '<img src="'.$file_type_image.'" width="20"/>';
}

get_bloginfo. If template_directory isn't absolute it might not work. Also try manually checking for/var/www/myblog/includes/...etc , depending on your apache settings, to see if that resolved your issue. – Shai Mishali Jan 31 '12 at 15:01$file_typeis actually the file name of the image and you are going to use it as a src for the img tag. try also using thisfile_exists(realpath($file_types_folder.$file_type.'.png'))You might be missing some URL rewrites to effectively use the absolute path as URI string of the image to point to the absolute path of the image on the server. For example,/var/includes/images/file_types/default.pngwill be translated tohttp://{domain}/{path}/var/includes/images/file_types/default.pngThere has to be a rewrite for that. – Melvin Protacio Jan 31 '12 at 15:07