Community & Support

"page not found .../images/blank.jpg"

can anyone please explain why i keep on receiving this error message "page not found 12/02/2009 - 20:19 .../images/blank.jpg"? coz i don't remember putting such image... and how to minimize these issue...

thanks,

vsotto

Comments

Find where that image is

Find where that image is located and remove the ../ prefix. That works fine for main pages, but not when your URL is /one/two/three.
Instead tell it the directory location.

<?php
 
echo $directory . '/images/blank.jpg';
?>

Which image is this exactly? Typically blank images are place holders; but are usually .png not .jpg. Try to put an empty file in the location so that it doesn't error and/or make sure that your website can actually find the image.

thanks... i'll look into

thanks... i'll look into this...