Re: [PHP] I'm not crazy I swear it... IE vs Safari and Firefox - The impossible!

2009-09-01 Thread tedd
Does anyone have any ideas on what could possibly be causing this? Matt: The first thing I would do is to validate the web portion of your application. In other words do your forms, as well as the rest of the web pages, validate? I've seen instances where people build projects around IE

RE: [PHP] I'm not crazy I swear it... IE vs Safari and Firefox - The impossible!

2009-08-31 Thread Williams, Dewey
-Original Message- From: Matt Neimeyer [mailto:m...@neimeyer.org] Sent: Monday, August 31, 2009 11:06 AM To: php-general Subject: [PHP] I'm not crazy I swear it... IE vs Safari and Firefox - The impossible! One of our products allows you to mail merge using an uploaded data

Re: [PHP] I'm not crazy I swear it... IE vs Safari and Firefox - The impossible!

2009-08-31 Thread Matt Neimeyer
No answers - just more questions to maybe point you in a direction you haven't been Anything is appreciated... Is it possible that the query/script is taking too long to build the response page and FireFox/Safari is asking for an empty query result? I don't think so... the

Re: [PHP] I'm not crazy I swear it... IE vs Safari and Firefox - The impossible!

2009-08-31 Thread Robert Cummings
Matt Neimeyer wrote: No answers - just more questions to maybe point you in a direction you haven't been Anything is appreciated... Is it possible that the query/script is taking too long to build the response page and FireFox/Safari is asking for an empty query result? I don't

Re: [PHP] I'm not crazy I swear it... IE vs Safari and Firefox - The impossible!

2009-08-31 Thread Matt Neimeyer
If it were prefetching, or another request clobbering your current request then you would see a second hit in your server logs. I will admit... I have made (at least) one assumption... Since... 1. This is a difference between IE and Firefox/Safari... 2. I was seeing a tracer email for each hit

Re: [PHP] I'm not crazy I swear it... IE vs Safari and Firefox - The impossible!

2009-08-31 Thread Paul M Foster
On Mon, Aug 31, 2009 at 11:55:38AM -0400, Matt Neimeyer wrote: If it were prefetching, or another request clobbering your current request then you would see a second hit in your server logs. I will admit... I have made (at least) one assumption... Since... 1. This is a difference

Re: [PHP] I'm not crazy I swear it... IE vs Safari and Firefox - The impossible!

2009-08-31 Thread Matt Neimeyer
In circumstances like this, I would instrument the code with echo/print statements all around where you think the problem is. We did that with no luck. We only saw one call to the initialize function which is why I switched to tracer emails because we knew the initialize function was the only

RE: [PHP] I'm not crazy I swear it... IE vs Safari and Firefox - The impossible!

2009-08-31 Thread Bob McConnell
From: Matt Neimeyer So far... I can reliably reproduce the problem in Firefox on Windows and Mac, Safari on Windows and Mac. But Chrome and IE appear to be unaffected. Finally, have you reproduced the problem while watching the network activity using something like tcpdump or Firebug's Net

Re: [PHP] I'm not crazy I swear it... IE vs Safari and Firefox - The impossible!

2009-08-31 Thread Ben Dunlap
I would set up Wireshark to capture and compare the http sequences from each browser. After you capture each stream, use the Follow TCP Stream option to look at the raw HTTP. If it is the browsers, there should be some obvious differences in the sequence of requests from them. This is a good