1. Welcome! Please take a few seconds to create your free account to post threads, make some friends, remove a few ads while surfing and much more. ClutchFans has been bringing fans together to talk Houston Sports since 1996. Join us!

I stink. FrontPage help.

Discussion in 'BBS Hangout' started by no_answer, Sep 11, 2003.

  1. no_answer

    no_answer Member

    Joined:
    Feb 13, 2003
    Messages:
    2,135
    Likes Received:
    167
    Hey guys. This is what I did...

    -designed a webpage on frontpage
    -copied the html code
    -pasted the code onto a geocities page

    AND THEN!!!

    -everything is fine when I view it from the computer I made it on, but when I try to view it on another computer it doesn't work.

    Please help me.
     
  2. mduke

    mduke Member

    Joined:
    Jul 17, 2001
    Messages:
    2,823
    Likes Received:
    0
    You'll probably have to save all the images etc. to the geocities site as well, if you already didn't do that....
     
  3. rothdaniel

    rothdaniel Member

    Joined:
    Sep 11, 2002
    Messages:
    158
    Likes Received:
    0
    I looked at your page.

    You are referencing your own computers hard drive.

    You have to upload the files to geocities then change the c:/..... to just reference the name of the file
     
    #3 rothdaniel, Sep 11, 2003
    Last edited: Sep 11, 2003
  4. no_answer

    no_answer Member

    Joined:
    Feb 13, 2003
    Messages:
    2,135
    Likes Received:
    167
    link

    it's not working, but there it is.
     
  5. rothdaniel

    rothdaniel Member

    Joined:
    Sep 11, 2002
    Messages:
    158
    Likes Received:
    0
    upload this file : background="file:///C:/Documents%20and%20Settings/lisa%20sprenkle/My%20Documents/Lisa's%20Briefcase/web%20page%20junk/gry.bmp"

    and replace the above line with :

    background = 'gry.bmp'
     
  6. no_answer

    no_answer Member

    Joined:
    Feb 13, 2003
    Messages:
    2,135
    Likes Received:
    167
    I am so pissed off with geocities.

    Everytime I upload a picture it says:

    files uploaded sucessfully AND THEY'RE NOT THERE.

    Ugh. I am so frustrated.
     
    #6 no_answer, Sep 11, 2003
    Last edited: Sep 11, 2003
  7. MR. MEOWGI

    MR. MEOWGI Contributing Member

    Joined:
    Jul 2, 2002
    Messages:
    14,382
    Likes Received:
    13
    What ftp are you using?
     
  8. no_answer

    no_answer Member

    Joined:
    Feb 13, 2003
    Messages:
    2,135
    Likes Received:
    167
    I'm going to use my www.tripod.lycos.co.uk account. It has something that connects with FrontPage I believe.

    I really have no idea what i'm doing.

    I use my tripod site to upload images for forums only at the moment. So! I know how to do that but I don't think that really helps me with my website. Someone tell me what I need to do. I have no clue.
     
  9. MR. MEOWGI

    MR. MEOWGI Contributing Member

    Joined:
    Jul 2, 2002
    Messages:
    14,382
    Likes Received:
    13
    You need to get to know the ftp process ala a ftp client. FrontPage must have it included?

    The hierarchy on your remote server that you are uploading to needs to be the exact same as your hard drive, or your browser can't find the image files.


    (Woohoo 4:00, time for Knight Rider!)
     
  10. no_answer

    no_answer Member

    Joined:
    Feb 13, 2003
    Messages:
    2,135
    Likes Received:
    167
    ummm let's see if this works.
     
  11. mduke

    mduke Member

    Joined:
    Jul 17, 2001
    Messages:
    2,823
    Likes Received:
    0
    Pics don't.
     
  12. no_answer

    no_answer Member

    Joined:
    Feb 13, 2003
    Messages:
    2,135
    Likes Received:
    167
    They work on my computer. :D

    I doubt i'll have time to get all the links working before I leave for class tonite, but we will see.
     
  13. Kam

    Kam Member

    Joined:
    Jan 16, 2002
    Messages:
    30,476
    Likes Received:
    1,322
    damnit, none yersheet works.
     
  14. DallasThomas

    DallasThomas Member

    Joined:
    Jul 10, 2002
    Messages:
    3,363
    Likes Received:
    216
    Hey Mr. Mooch, see if you can do any work with this.
     
  15. Jeff

    Jeff Clutch Crew

    Joined:
    Feb 14, 1999
    Messages:
    22,412
    Likes Received:
    362
    Ok, here's your problem.

    When you save anything on your hard drive, it is located in a folder on that drive. When you link to it in front page, the software is generating a link relative to that folder.

    So, you get a link that looks approximately like this...

    img
    src="file:///C:/Documents%20and%20Settings/ lisa%20sprenkle/My%20Documents/ Lisa's%20Briefcase/pictures%20of%20stuff/ S_D%20pictures/sdork.JPG"
    width="97" height="84"


    On your hard drive, that works fine because you are staring at your computer. However, because no one on the web has access to your computer, they cannot access your hard drive to see the image.

    When you FTP an image, you are sending it to a remote server located somewhere else. As a result, the file:///C:/ , etc. link will no longer be valid.

    You can create two types of links that will work.

    Full Path:

    This is when you need to link to something not on the same site as yours. For example, if you want to link to an image on CNN's website so it will display on your page, you would need to enter the entire URL in that link...

    i.e a href="http://www.cnn.com/images/image.jpg"

    Relative Path:

    If the file resides on YOUR website - the same website where the actual html files are located - you can use a relative path. This means that it will search for that file in the same location as the current document.

    For example, if you have your page on the site called index.html, any image in the same folder at index.html could be designated like this...

    a href="image.jpg"

    The browser looks in the same folder as index.html for the file image.jpg and displays it. If the image is inside another folder, you might use something like this...

    a href="graphics/image.jpg"

    indicating that file is in the folder called "graphics" which is in the folder where index.html resides. The folder where all of your files primarily reside (where index.html is) is called the ROOT DIRECTORY.

    Anything in the root directory can be linked to using a relative path.

    I know it is confusing. It just takes a little time to figure out. Good luck.
     
  16. Kam

    Kam Member

    Joined:
    Jan 16, 2002
    Messages:
    30,476
    Likes Received:
    1,322
    wtf, that was all confusing
     
  17. rockHEAD

    rockHEAD Member

    Joined:
    Mar 22, 1999
    Messages:
    10,337
    Likes Received:
    123
    way to go! Jeff with Front Page HTML 101 :D
     
  18. no_answer

    no_answer Member

    Joined:
    Feb 13, 2003
    Messages:
    2,135
    Likes Received:
    167
    DONE!!!!!!!!!!

    maybe it works, maybe it doesn't. I'm not messing with it anymore.
     
  19. Kam

    Kam Member

    Joined:
    Jan 16, 2002
    Messages:
    30,476
    Likes Received:
    1,322
    Nevermind
     

Share This Page