Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: making web images load  (Read 12556 times)

0 Members and 1 Guest are viewing this topic.

tony_kelly

  • Guest
making web images load
« on: March 31, 2004, 09:16:57 AM »
 ???Hello out there
Can anyone offer me any suggestions as to how I can make sure my images appear on my ftp space with AOL ?
I believe their servers allocated to members use are a little flaky(un-reliable) is this correct ?
I am quite new to the world of HTML, and although my pages are successfully uploaded, it is hit-and-miss as to wether ALL the images will appear. I'm guessing that I can ask for the images upon loading, perhaps in the <HEAD> of the document ? But I don't know how to do this. Any ideas PLEASE ! ;D ;D :-/

MetalMilitia

  • Guest
Re: making web images load
« Reply #1 on: April 03, 2004, 09:43:06 AM »
Some web hosts are rather picky about what characters are used in file names. It is quite common for capital letters not to be supported, so try removing any capitals in the file names.
I dont know about 'asking' for images you should just be able to use...

<img src="Images/picture.gif" width="99" height="39">

Joleen

  • Guest
Re: making web images load
« Reply #2 on: April 05, 2004, 06:45:41 AM »
You could try pre-loading your images to an array in JavaScript but that would take some research on your part.  I'd go with Metals tip.

folklore

  • Guest
Re: making web images load
« Reply #3 on: June 09, 2004, 06:10:50 AM »
Usually it is not the case that the web host restrict which characters are allowed, but rather that the filename is case sensitive.

On Unix based web hosts, WORD, word and Word often means three different things, and on Windows based web hosts, it will not necessarily be interpreted differently.

Here is my suggestion:

(1) Check the filename's case.
Note the exact case of the filename. This is usually displayed correctly in Windows Explorer, depending on your setup, but, if it is not, you can check it as follows:

Either open a dos prompt and go to that directory and perform the DIR command and read the filename there (as Windows XP can "prettyfy" filenames in its display); or, you can rightclick on the file, choose properties, and read the filename there.

(2) Rename the file to something simpler
It is often possible to miss-spell a name such as
supercalifragilisticexpialidocious.jpg. Rather call it super.jpg, and make sure it is all lowercase letters.

(3) Edit your web page
Since your filename is now in lower case, make sure that you reference the file in your web page in lower case.

If this still doesn't work, I can edit the code for you.

Regards,

FolkLore