I am working on a website. It is basically a movie database working with the help of IMDB. I I use images from their server, on localhost I'm able to display them. However, when I put the site on a live server, images are not shown.
I put a single image on different file for testing with this code:
<img src="http://ia.media-imdb.com/images/M/MV5BMTM3OTUyNTI3MF5BMl5BanBnXkFtZTcwODcyMzM0Mw@@._V1_SX300.jpg" style="width:100%;height:300px">
See this demo.
However, I am not able to view this image. With firebug, it does display image on debug window.
I replaced this image with another image, and I can see that image normally. So: why is the previous IMDB image not shown?
Can anyone point out what I'm missing?