PDA

View Full Version : Having trouble uploading image to my website HELP!!!!!!!!!


MadGamer
19-10-2003, 13:53
Can anyone help? im trying to upload and image to my website and it won't show heres the code im using <img src="Holly Valance.jpg"> Have i got this right because it just shows a little red x in the corner where the image is supposed to be located. Also i want the image to fill the whole front page how do i go about this?

Cheers

WNA

Paul K
19-10-2003, 13:57
Where are you hosting your pics? On your own websace?
Could be case specific can you check if it is JPG,jpg, JPEG etc?

MadGamer
19-10-2003, 14:02
ftp://homepages.demon.co.uk is where im hosting and yes it is my own website.

Paul K
19-10-2003, 14:15
If the image uploaded ok check your ftp space to make sure the JPG extension didn't get altered to lower case

MadGamer
19-10-2003, 15:14
If you go to my website you'll see what i mean by clicking HERE (http://www.nicka.demon.co.uk)

homealone
19-10-2003, 15:43
Can anyone help? im trying to upload and image to my website and it won't show heres the code im using <img src="Holly Valance.jpg"> Have i got this right because it just shows a little red x in the corner where the image is supposed to be located. Also i want the image to fill the whole front page how do i go about this?

Cheers

WNA

Hi

the code to place the image should include the URL of where it can be found

e.g <img src="http://www.nicka.demon.co.uk/images/holly valance.jpg">

not sure about getting to fill the page, though.

MadGamer
19-10-2003, 17:49
Heres what im having trouble with.

homealone
19-10-2003, 18:02
Heres what im having trouble with.

hmmm - the image placeholder on your site has the following URL

http://www.nicka.demon.co.uk/images/holly%20valance.JPG

- do you need to edit out the "%20" bit, or change the name of the file?

The stuff in the screendumps looks ok?

MadGamer
19-10-2003, 18:07
hmmm - the image placeholder on your site has the following URL

http://www.nicka.demon.co.uk/images/holly%20valance.JPG

- do you need to edit out the "%20" bit, or change the name of the file?

The stuff in the screendumps looks ok?

I still can't get it to work :2up: :2up: :2up:

Stuart
19-10-2003, 18:53
I still can't get it to work :2up: :2up: :2up:
I noticed in the screen shot that the images folder was actually called "Images". Try renaming it to "images", or changing the word "images" in the link to "Images".

ic14
19-10-2003, 18:57
scastle has hit it on the head!
I use demon and thats the same thing problem i had, there webspace is Case Sensitive.

MadGamer
19-10-2003, 19:12
Ive changed the folder from Images to images. Now do i change the html document title to images as well?

ic14
19-10-2003, 19:18
Having looked at the code, it should work now.
Nope it hant! Try renameing the file with a _ instead of a space, and change the code too ;)

MadGamer
19-10-2003, 20:58
Having looked at the code, it should work now.
Nope it hant! Try renameing the file with a _ instead of a space, and change the code too ;) tryed this and it still doesn't work.

Stuart
19-10-2003, 21:47
tryed this and it still doesn't work.
In the link, you are trying to load "holly_valance.JPG". It should be "holly_valance.jpg".

Tricky
19-10-2003, 22:15
Right amend:
<img src="http://www.nicka.demon.co.uk/images/"holly_valance.jpg".>

To be:
<img src="http://www.nicka.demon.co.uk/images/holly_valance.JPG">

You've got some dodgy "'s in there along with a .

And for those that want to see this image:
http://www.nicka.demon.co.uk/images/holly_valance.JPG

MadGamer
19-10-2003, 22:32
Right amend:
<img src="http://www.nicka.demon.co.uk/images/"holly_valance.jpg".>

To be:
<img src="http://www.nicka.demon.co.uk/images/holly_valance.JPG">

You've got some dodgy "'s in there along with a .

And for those that want to see this image:
http://www.nicka.demon.co.uk/images/holly_valance.JPG Thank you Tricky it's working now.

Tricky
19-10-2003, 22:36
No worries glad to be of service, just watch your coding in future - Can I suggest a decent HTML editor like Ultraedit (Costs about £25) best editor ever IMO. Syntax highlighting, Quotes brackets etc.

I'd also recommend that you don't mix CaSE on your files, it'll trip you up sooner or later (take it from someone who's got about 200 images of mixed case on his site!)