I am working on a website. I have uploaded a logo for the site. The logo displays fine when I run it on my PC, but when I upload the file online using FileZilla, the logo does not get displayed but only the alt text is displayed. I have double checked the code and I am almost sure that my code is fine. Here it is,

  <h1 id="logo"><a href="index.html" title="Stop4Gifts"><img src="uploads/logo.png" alt="Stop4Gifts"/> </a></h1>

Please help me out. Thanks

link|improve this question

did you browse the image path in a address bar – Anish Jan 22 at 6:27
feedback

5 Answers

up vote 2 down vote accepted

This means your image may not be present, or has different path/name on server. If this is not the case, do check that it is not logo.PNG and also refresh the page.

Hope this helps.

link|improve this answer
3  
Just hit stop4gifts.com/uploads/logo.PNG, you hit it right on the head +1 – ToddBFisher Jan 22 at 6:35
I agree with @TiddBFisher, the server is case-sensitive and logo.png will not work, but logo.PNG does. Try changing the extension on the file and re-uploading. Make sure to delete the old one with the upper-case extension. – Mario J Vargas Jan 22 at 6:42
Thankyou for the answer. I did not knew that the server was case sensitive. +1 to you and all others who suggested it. – Startup Crazy Jan 22 at 6:52
feedback

Make sure to check case on all files and file paths. I usually make everything lowercase in this type of situation.

link|improve this answer
Yes, this is what I also ensure, for all types of image, coding files and directories on Linux! – Vinayak Garg Jan 22 at 6:40
feedback

A few things to check:

  • check the image file did transfer successfully to the location you are expecting it at.
  • image files should be transferred in binary mode when using ftp.
  • some operating systems use case-sensitive file names - check the case of your file name and all references to it.
link|improve this answer
feedback

i checked your site, there is no such a image [http://stop4gifts.com/uploads/logo.png] [right click on Stop4Gifts , and click view image] , may be it's .PNG?

link|improve this answer
feedback

Issue in your extension, need to change .png to .PNG

<h1 id="logo">
  <a href="index.html" title="Stop4Gifts">
    <img src="uploads/logo.PNG" alt="Stop4Gifts"/> 
  </a>
</h1>
link|improve this answer
I would suggest other way round. Change all images/files to lowercase. And follow this rule forever! – Vinayak Garg Jan 22 at 6:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.