FTP Uploading Problem - Incl Pics For Reference

BlackbirdDesign

New Member
I created 5 seperate pages in Photoshop, opened it up in Dreamweaver, linked everything together, and then uploaded all the files via Filezilla onto my ftp server.

Problem being, when I log into my server and try and view one of these html files, none of the images show up and clearly everything is linking back to my PC and not where it is uploaded. How do I fix this?

Please see attached images:

http://img863.imageshack.us/img863/3415/help1.gif

http://img801.imageshack.us/img801/1011/help2.gif

If there is ANY other information you need to help me, please let me know, I will do anything!
 

DHDdirect

New Member
Check your settings of Dreamweaver:

Site -> Manage Sites -> hightlight site -> Edit

In the Local Info tab check the yellow highlighted area in the attached image. This must be set to links relative to document, and an address put into the area just below. You'd think it'd be the other way around but this is what works for me.

Code:
relative to document creates link such as:
 
<img src="../image.png" />
 
relative to site root creates link such as:
 
<img src=" C:\Folder\Folder\image.png" />

You can also switch Dreamweaver to code view to verify how the image links created

I hope that helps.
 

Attachments

  • dreamweaver_ss.jpg
    dreamweaver_ss.jpg
    84.7 KB · Views: 14
Top