Re: [MacPerl-WebCGI] clueless newbie question
[email protected] (Charles Eaton) Thu, 19 Jul 2001 05:11:06 -0500
| Newsgroups | perl.macperl.webcgi |
|---|---|
| Message-ID | <B77C1C6A.2492%[email protected]> |
on 7/18/01 11:43 PM, Mary Beth Cahoon at [email protected] wrote: > Hello all. > I hope this is the right list in which to find the answer to my mystery. > (If not, PLEASE tell me!) > > My web host has helpfully installed the agora.cgi shopping cart onto my > website-in-progress. I've added a few products to it and everything was > going fine until she made a few modifications to the look of the > frontpage.html page of the catalog (at my request). After she added my logo > and changed the link colors, now I cannot for the LIFE of me get the product > images to show up in Internet Explorer 5 mac edition. ( I have an iMac > revB.) They USED to show up before the modifications were implemented. > They STILL show up in Netscape Navigator 4.08. My host has a PC and she > says they show up fine for her in either browser. Here's what I > mean:http://www.winter-branch.com/cgi-bin/store/agora.cgi?cart_id=8417904.14 > 922*Qn1Ez6&product=Earrings. I can't see the earrings, prices, product > names, or More info links. Can you? Does anyone have a clue as to what is > going on? I've already tried clearing my ache and restarting. No luck. > > Mary Beth --------------------------------------------- BAD CODE!!! In your case it's the code from the "agora.cgi" script. Look at your source html and find the fooling lines: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ <tr><td colspan=3><table width="100%" border=1> <tr><td width="50%" valign="top"><FORM METHOD = "post" ACTION = "agora.cgi"> <INPUT TYPE = "hidden" NAME = "cart_id" VALUE = "8417904.14922*Vw6Yf4"> <INPUT TYPE = "hidden" NAME = "page" VALUE = ""> <INPUT TYPE = "hidden" NAME = "product" VALUE = "Earrings"> <table width=100%> </TR> <TR WIDTH="100%"> <TD ALIGN="CELTER" valign="top" WIDTH="100%"> <FONT FACE="ARIAL" SIZE="2"> <b>Maureen Earrings</b> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ You are missing these: "</tr></td>" ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ <tr><td colspan=3><table width="100%" border=1> <tr><td width="50%" valign="top"><FORM METHOD = "post" ACTION = "agora.cgi"> <INPUT TYPE = "hidden" NAME = "cart_id" VALUE = "8417904.14922*Vw6Yf4"> <INPUT TYPE = "hidden" NAME = "page" VALUE = ""> <INPUT TYPE = "hidden" NAME = "product" VALUE = "Earrings"> >>>></tr></td> <table width=100%> </TR> <TR WIDTH="100%"> <TD ALIGN="CENTER" valign="top" WIDTH="100%"> <FONT FACE="ARIAL" SIZE="2"> <b>Maureen Earrings</b> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ NOTE: A syntax check using BBEdit came up with over 115 errors in your code, most are minor, but the table code produced a "Warning". -chuck