Forum Moderators: open

Message Too Old, No Replies

Dissappearing Image

         

timbo88

6:23 am on Aug 24, 2004 (gmt 0)

10+ Year Member



Hi,

I built this website (newbie at this) using dw mx which appears fine when I preview it locally but when browse it using IE or Netscape one of the images does not display. In fact, when I view the downloaded html the image tag is missing (the tag is there in dw and when I ftp to the server to look at the html).

Thanks in advance,
Tim

Alfasys

8:21 am on Aug 24, 2004 (gmt 0)

10+ Year Member



Hi Tim,

did you check your image path whether it's published in the right way?
Can you give a short piece of code from the original dw file where you coded the image and the same piece of code from the source view in IE?

netguy

9:30 am on Aug 24, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Tim, you might also want to check that the images are all lower case filenames to match the lower case code in your html file. Any missmatch between upper/lower case can cause a problem, particularly on a unix server. Also, some ftp programs may be set to force lower case file uploads - when the code you are using requires all caps or upper/lower case. I personally prefer to keep image filenames and code lower case to begin with.

Steve

timbo88

9:46 am on Aug 24, 2004 (gmt 0)

10+ Year Member



In DW:

<table width="900" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td colspan="5"><img src="images/italianframe900x600_r1_c1.jpg" width="900" height="60"></td>
</tr>
<tr>
<td width="20"><img src="images/italianframe900x600_r2_c1.jpg" width="20" height="480"></td>
<td width="160"><p><img src="images/btnhomedown.gif" ***edited***</td>
<td width="20"><img src="images/italianframe900x600_r2_c3.jpg" width="20" height="480"></td>
<td width="640"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="640" height="480">
<param name="movie" value="homepage.swf">
<param name=quality value=high>
<embed src="homepage.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="640" height="480"></embed>
</object></td>
<td width="60"><img src="images/italianframe900x600_r2_c5.jpg" width="60" height="480"></td>
</tr>
<tr>
<td height="61" colspan="5"><img src="images/italianframe900x600_r3_c1.jpg" width="900" height="60" border="0" usemap="#Map"></td>
</tr>
</table>

in IE on my computer:

<table width="900" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td colspan="5"><img src="images/italianframe900x600_r1_c1.jpg" width="900" height="60"></td>
</tr>
<tr>
<td width="20"><img src="images/italianframe900x600_r2_c1.jpg" width="20" height="480"></td>
<td width="160"><p><img src="images/btnhomedown.gif" ***edited*** </td>
<td width="20"><img src="images/italianframe900x600_r2_c3.jpg" width="20" height="480"></td>
<td width="640"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="640" height="480">
<param name="movie" value="homepage.swf">
<param name=quality value=high>
<embed src="homepage.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="640" height="480"></embed>
</object></td>
<td width="60"></td>
</tr>
<tr>
<td height="61" colspan="5"><img src="images/italianframe900x600_r3_c1.jpg" width="900" height="60" border="0" usemap="#Map"></td>
</tr>
</table>

Thanks - Tim

[edited by: tedster at 3:34 pm (utc) on Aug. 24, 2004]
[edit reason] remove url [/edit]

Alfasys

10:21 am on Aug 24, 2004 (gmt 0)

10+ Year Member



So Tim,

difference between your code in dw and the source code from IE it seems that following line is different

<td width="60"><img src="images/italianframe900x600_r2_c5.jpg" width="60" height="480"></td>

now, when I load the page in IE I can see the image correct in the browser and the line <td width="60"><img src="images/italianframe900x600_r2_c5.jpg" width="60" height="480"></td> is present in the source code.

So, try to load the page on another computer and verify of the problem is still present. If not, check your browser settings and zone settings.

Regards,

Karl

kaled

4:00 pm on Aug 24, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



It may not be relevant, but if I experience any strange problems of this sort I always view the site with Opera and hit F5. This seems to force a proper refresh - other browsers will normally then view the page correctly too.

I don't believe there is a widespread problem but rather a server fault (with respect to caching) somewhere near me - maybe there is a similar problem near you.

Kaled.

encyclo

4:04 pm on Aug 24, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Welcome to WebmasterWorld [webmasterworld.com], timbo88!

width="60" height="480"

You're running the evil Norton Internet Security, aren't you? The above dimensions are a standard advertizing size, and NIS blocks them.

Try:

[webmasterworld.com...]

and:

[webmasterworld.com...] message #3.

timbo88

11:42 pm on Aug 24, 2004 (gmt 0)

10+ Year Member



Turned off NIS and :)

Thanks encyclo and everyone who looked at the problem. I would have never figured it out!

Tim