[PHP-DEV] session.send_cache_headers as new ini entry

2002-03-20 Thread Christian Stocker
Hi We had a problem, sending dynamically generated pdf documents to MSIE 5.5, if we used sessions. It looked like the Cache-Control and Pragma Headers caused the problem, therefore i created a patch for session.c with a new ini-directive session.send_cache_headers. If this is set to false,

Re: [PHP-DEV] session.send_cache_headers as new ini entry

2002-03-20 Thread Markus Fischer
Christian, could you do me a favour and pasting the offending HTTP headers which caused the problem? I'm investigating a similar problem here. - Markus On Wed, Mar 20, 2002 at 05:47:35PM +0100, Christian Stocker wrote : Hi We had a problem, sending dynamically

Re: [PHP-DEV] session.send_cache_headers as new ini entry

2002-03-20 Thread Christian Stocker
Hi I commented out Cache-Control, Pragma and Expires and this helped... Didn't investigate further, since it worked with that :) Maybe just one of these headers is really offending... chregu On Wed, 20 Mar 2002, Markus Fischer wrote: Christian, could you do me a favour and

Re: [PHP-DEV] session.send_cache_headers as new ini entry

2002-03-20 Thread Markus Fischer
I forgot to ask also .. what did you expirience exactly? Crash of the Internet Explorer Client (Browserwidnow suddenly closed) ? - Markus On Wed, Mar 20, 2002 at 06:20:36PM +0100, Christian Stocker wrote : Hi I commented out Cache-Control, Pragma and Expires and this

Re: [PHP-DEV] session.send_cache_headers as new ini entry

2002-03-20 Thread Christian Stocker
Hi different behaviour -blank page and no crash -just a crash sometimes also a complete crash of MSIE 5.5, then only a windows (win2k) reboot helped to get it back completely. chregu On Wed, 20 Mar 2002, Markus Fischer wrote: I forgot to ask also .. what did you expirience exactly?

Re: [PHP-DEV] session.send_cache_headers as new ini entry

2002-03-20 Thread Vlad Krupin
After playing with the same problem for a while a few months back, I believe I pin-pointed the problem. When you download a file, IE places it into a temp folder before opening. If you tell it explicitly not to cache, it won't put it there, and, when it tries to open it, it'll crash.