From agfische at email.smith.edu Thu Apr 5 14:07:06 2007 From: agfische at email.smith.edu (Aaron Fischer) Date: Tue Mar 4 07:24:12 2008 Subject: [front-end] Prevent (IE) browser cache of image Message-ID: <7A808241-AF65-4237-80E4-3DD255BF42D0@email.smith.edu> Hi there, I have a little app that is a pseudo-day-planner. Users can enter appointments via a form and then I use PHP and GD to write the appointment blocks onto a calendar image. It works great in Safari on Mac and Firefox on PC. However, it doesn't work with Internet Explorer on PC. It appears that the issue is that IE is not loading a fresh version of the calendar image. How can I force IE to load a fresh version of the image, either via PHP or HTML/HTTP code? Thanks! -Aaron From hananm at gmail.com Thu Apr 5 23:02:24 2007 From: hananm at gmail.com (Hanan) Date: Tue Mar 4 07:24:12 2008 Subject: [front-end] Prevent (IE) browser cache of image In-Reply-To: <7A808241-AF65-4237-80E4-3DD255BF42D0@email.smith.edu> References: <7A808241-AF65-4237-80E4-3DD255BF42D0@email.smith.edu> Message-ID: <8943575c0704052002l1622f61xa9d26d811135d5ea@mail.gmail.com> Try adding a random string at the end of image. Something like imagename.jpg?rstring=asdfas. This can be done with either javascript or php. -Hanan On 4/5/07, Aaron Fischer wrote: > > Hi there, > > I have a little app that is a pseudo-day-planner. Users can enter > appointments via a form and then I use PHP and GD to write the > appointment blocks onto a calendar image. > > It works great in Safari on Mac and Firefox on PC. However, it > doesn't work with Internet Explorer on PC. It appears that the issue > is that IE is not loading a fresh version of the calendar image. > > How can I force IE to load a fresh version of the image, either via > PHP or HTML/HTTP code? > > Thanks! > > -Aaron > > _______________________________________________ > New York PHP SIG: Front End Mailing List > AMP Technology > Supporting Apache, MySQL and PHP > http://lists.nyphp.org/mailman/listinfo/front-end > http://www.nyphp.org > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.lists.nyphp.org/pipermail/front-end/attachments/20070405/26a55b3d/attachment.html From ouchbobo at yahoo.com Thu Apr 19 14:35:34 2007 From: ouchbobo at yahoo.com (Joshua Glenn) Date: Tue Mar 4 07:24:12 2008 Subject: [front-end] IE 7 List style type bug Message-ID: Hi All, I've just run into a bug that i can't find any info about and am wondering if somehow it's me. The bug is that IE7 is displaying a big ugly disc instead of a square for list items that have "list-style-type: square;". I don't think it's my code because even this page looks messed up : http://www.w3schools.com/css/tryit.asp?filename=trycss_list-style-type_all Could it be my windowsXP box? Any info would be appreciated. Thanks, Josh From ashaw at polymerdb.org Thu Apr 19 14:42:58 2007 From: ashaw at polymerdb.org (Allen Shaw) Date: Tue Mar 4 07:24:12 2008 Subject: [front-end] IE 7 List style type bug In-Reply-To: References: Message-ID: <4627B832.2040500@polymerdb.org> Joshua Glenn wrote: > I've just run into a bug that i can't find any info about and am > wondering if somehow it's me. The bug is that IE7 is displaying a big > ugly disc instead of a square for list items that have > "list-style-type: square;". > > I don't think it's my code because even this page looks messed up : > http://www.w3schools.com/css/tryit.asp?filename=trycss_list-style-type_all > > Could it be my windowsXP box? Could be your box. IE7 on my WinXP machine shows a black square for that page (in the third list, where the first item is "square type", right?) Wish I could guess why your copy of IE7 is doing that... -- Allen Shaw Polymer (http://polymerdb.org) slidePresenter (http://slides.sourceforge.net) From agfische at email.smith.edu Fri Apr 20 15:51:08 2007 From: agfische at email.smith.edu (Aaron Fischer) Date: Tue Mar 4 07:24:12 2008 Subject: [front-end] Javascript woe, opening a new window Message-ID: <72292E4B-ACED-48E2-BBA0-40EE851410A3@email.smith.edu> Greetings! I have two pages that, as far as I can tell, have identical javascript calls/functions. The function works in both pages on all platforms and browsers, except Safari on Mac. And this is the interesting thing, it works fine on one page in Safari but not on the other. Here's an excerpt of the code: The JS function being called, located in the section of the html: The call to the function:

Campus tour

On the page that doesn't work in Safari, you click the link and nothing happens. Any thoughts on this specific code, or methods of debugging it? Thanks, -Aaron From jekillen at prodigy.net Fri Apr 20 19:13:01 2007 From: jekillen at prodigy.net (jekillen) Date: Tue Mar 4 07:24:12 2008 Subject: [front-end] Javascript woe, opening a new window In-Reply-To: <72292E4B-ACED-48E2-BBA0-40EE851410A3@email.smith.edu> References: <72292E4B-ACED-48E2-BBA0-40EE851410A3@email.smith.edu> Message-ID: <6066b9aec0107f86594689c2b8d7bc50@prodigy.net> On Apr 20, 2007, at 12:51 PM, Aaron Fischer wrote: > Greetings! > > I have two pages that, as far as I can tell, have identical javascript > calls/functions. The function works in both pages on all platforms > and browsers, except Safari on Mac. And this is the interesting > thing, it works fine on one page in Safari but not on the other. > > Here's an excerpt of the code: > > The JS function being called, located in the section of the > html: > > > > The call to the function: >

href="javascript:openNewWindow('http://www.smith.edu/admission/ > campusvisit/windows/ > ctour.php','campustour','toolbar=no,scrollbars=yes,resizable=yes,width= > 540,height=215');">Campus tour

> > On the page that doesn't work in Safari, you click the link and > nothing happens. > > Any thoughts on this specific code, or methods of debugging it? > > Thanks, > > -Aaron > I have had a similar problem with Safari but with form buttons. I would try instead of href=javascript..... etc.... use href='#' and onclick="functioncall" Hope that helps Jeff K