Help - uploading images

Have the feeling that everybody is staring at you in the other forums? Then look here, in this forum nobody does care what you say ;-)

Moderator: Project members

Post Reply
Message
Author
Iona
500 Command not understood
Posts: 1
Joined: 2008-11-12 15:18
First name: Iona
Last name: Evans

Help - uploading images

#1 Post by Iona » 2008-11-12 15:25

Hi,

I know this is probably a really silly question and ovbious for most of you but I am not used to stuff like this and really stuggling with it.

I have created a basic webpage and succesfully uploaded it using fillezilla, I now wish to add an image to my webpage and have uploaded it using filezilla. I wanted to know the web address for the image so I could add it to my webpage but I am unable to find it! I have uploaded it to the same file as my index page so presumed it would be mywebsite.co.uk/imagename.jpg but that doesn't work and neither does anything else I try. Any ideas?

Thanks!

User avatar
boco
Contributor
Posts: 26940
Joined: 2006-05-01 03:28
Location: Germany

Re: Help - uploading images

#2 Post by boco » 2008-11-13 00:40

If the index of your website is mywebsite.co.uk/index.html (example) and the picture is uploaded into the same directory, it would be mywebsite.co.uk/imagename.jpg . In the HTML it would simple be referred to as 'imagename.jpg' (no quotes).

What does the browser tell you if you try to access the image? 404? Or a broken image?
No support requests over PM! You will NOT get any reply!!!
FTP connection problems? Please read Network Configuration.
FileZilla connection test: https://filezilla-project.org/conntest.php
FileZilla Pro support: https://customerforum.fileZilla-project.org

goblin
504 Command not implemented
Posts: 10
Joined: 2009-02-11 12:25
First name: goblin
Last name: goblin

Re: Help - uploading images

#3 Post by goblin » 2009-02-11 12:49

Iona wrote:Hi,

I know this is probably a really silly question and ovbious for most of you but I am not used to stuff like this and really stuggling with it.

I have created a basic webpage and succesfully uploaded it using fillezilla, I now wish to add an image to my webpage and have uploaded it using filezilla. I wanted to know the web address for the image so I could add it to my webpage but I am unable to find it! I have uploaded it to the same file as my index page so presumed it would be mywebsite.co.uk/imagename.jpg but that doesn't work and neither does anything else I try. Any ideas?

Thanks!
Just like boco said, if the image files are in the ROOT you can use this code

Code: Select all

<img src="image-name.jpeg" />
If you have the images on a folder, you can use:

Code: Select all

<img src="FOLDER/image-name.jpeg" />

where FOLDER = your folder name (case sensitive)

All the best! :)

Post Reply