Help with ftp images

by 5 replies
7
Hi, now as simple as this may be how do you get the jpg image on my dreamweaver html page to show up when I upload to my FTP server, so that when my html page shows up how do I make the image show up, the image is saved as jpg in dreamweaver.
#programming #ftp #images
  • ShazLeghari

    1.You need to create a folder, then name the folder (images) or something similar

    2.Put the all your images for the website in that folder

    3.Link to those images in your html editor it should look like this

    <img title="IMAGE NAME" alt="ALTERNATIVE TEXT" src="YOURWEBSITE/images/THE-NAME-OF-YOUR-IMAGE.jpg"

    place h t t p : / / without spaces just before YOURWEBSITE

    The path you have is most likely linking to the file on your computer where the image has been selected from! Look in you html code for somthing like:

    src="mydocuments/my_pictures/image_name.jpg

    Now Change it to the website name and path as shown above!

    4.And last, the image folder you have created and placed your images in - upto it to your server along with your html pages.

    Alex
  • I have sent a PM
  • Hi

    Sounds like your images are not getting uploaded to your FTP server.

    Usually when you upload a HTML file Dreamweaver will ask you if you want to upload the dependant files also and any related images to that file should get uploaded if you say yes to that question.
    If you don't get prompted for that questions from Dreamweaver do the following
    Go to Edit, Preferences, Site. Checkmark Dependent files Prompt on put /check in.

    You can also upload any files independently from the side panel.
    • [1] reply
    • I would get into the habit of using an FTP software (also known as FTP client). It will be useful for you in the long-run. A good one I have been using for quite some time is called FileZilla. It is free and very simple to use.

      As for your image issue, using such app would allow you to physically see whether your file has made it to the server or not.

      Omer
      • [1] reply

Next Topics on Trending Feed

  • 7

    Hi, now as simple as this may be how do you get the jpg image on my dreamweaver html page to show up when I upload to my FTP server, so that when my html page shows up how do I make the image show up, the image is saved as jpg in dreamweaver.