Question

I am having some trouble open a image (jpg) on the browser despite correct location. The rest of the image located in the folder are able to open.

I need some advise or diction how to approach this issue.

Link 1 --> Show my FTP http://postimg.org/image/g3lofgv8r/

Link 2 --> Show the dictionray http://postimg.org/image/7nw24mw81/

Was it helpful?

Solution

Did you try to url encode the value in the src-attribute of your image tag? (I find this link useful for a quick check: http://www.w3schools.com/tags/ref_urlencode.asp)

Like when your image filename is

<img src="spaces and + sign in url.jpg" />

you would encode it with

<img src="spaces+and+%2B+sign+in+url.jpg" />

OTHER TIPS

Issue looks to me is the Space between name of image...either remove space or use underscore(_)...enter image description here

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top