-1

I am able to add files and upload them to my website correctly however existing images on the server do not display in the table correctly. They show as blank rows in the table. href is 'file:///D:/Hosting/11318691/html/Images/Penguins.jpg' when I believe it should be 'http://www.mywebsite.com/Images/Penguins.jpg'. I am using Godaddy if that matters.

user593733
  • 219
  • 3
  • 11
  • How are we supposed to help you here? – A. Wolff Mar 24 '14 at 12:32
  • Is there some setting in jquery.fileupload.js to control this behavior? Here is a link to my image upload page that shows this behavior. http://www.stuffwant.com/Items/Images Notice if you move your mousepointer to the left side of the rows the image paths are file:///D:/Hosting... Why is jquery.fileupload behaving like this? – user593733 Mar 24 '14 at 12:45
  • I don't know, check plugin DOC. Now if you want more relevant help, provide your relevant code, seems obvious – A. Wolff Mar 24 '14 at 12:46

1 Answers1

1

You need to edit the .html file so the images will look like <img src="/Images/Penguins.jpg'" > rather than <img src="file:///D:/Hosting/11318691/html/Images/Penguins.jpg'" >. What web editing software are you using?

Chris Gunawardena
  • 6,246
  • 1
  • 29
  • 45