I have a php file like this sitting in a wamp/www/(somefoldername) ... but I just noticed that some external images just don't load in Chrome when the img src is included in a .php extension (like "index.php). If I switch this to HTML extension ("index.html"), the image loads just fine in Chrome. I absolutely need to include PHP in this file so that's why it's in .php. The images otherwise load fine in Firefox.
The image I am trying to load but not appearing is a profile image from twitter. (index.php below)
<html>
<head>
</head>
<body>
<!-- this image does not load in php but does load in HTML for Chrome -->
<img src="http://pbs.twimg.com/profile_images/473355788279246848/-zBB7WIF.jpeg">
<!-- this image loads fine everywhere -->
<img src="http://upload.wikimedia.org/wikipedia/commons/thumb/2/23/Lake_mapourika_NZ.jpeg/640px-Lake_mapourika_NZ.jpeg">
</body>
</html>
"Network" contents on Chrome
index.php;
-zBB7WIF.jpeg pbs.twimg.com/profile_images/473355788279246848 Header:
Request URL:http://pbs.twimg.com/profile_images/473355788279246848/-zBB7WIF.jpeg Request Headers CAUTION: Provisional headers are shown. Accept:image/webp,/;q=0.8 Cache-Control:max-age=0 Referer:index.php User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36
640px-Lake_mapourika_NZ.jpeg upload.wikimedia.org/wikipedia/commons/thumb/2/23/Lake_mapourika_NZ.jpeg
data:image/png;base…
that last request looks really weird. its header is as follows -->
Request URL:data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg==