Re: [PHP] File download doesn't work with SSL

2002-10-07 Thread Rasmus Lerdorf
Does it work with a different browser? Smells like an IE bug to me. On Mon, 7 Oct 2002, 1LT John W. Holmes wrote: Everyone, I've had a simple download script working where a user would click on a link and the program would send word or excel headers instead of HTML. The file would then be

Re: [PHP] File download doesn't work with SSL

2002-10-07 Thread 1LT John W. Holmes
Does it work with a different browser? Smells like an IE bug to me. Doesn't everything with IE smell like a bug? Anyhow, it works fine with Netscape. Opera will not open the file, but will save-as just fine when prompted. I'm off to search MS...deity of choice help me... ---John Holmes...

Re: [PHP] File download doesn't work with SSL

2002-10-07 Thread 1LT John W. Holmes
in my code. Any help is appreciated. ---John Holmes... - Original Message - From: Rasmus Lerdorf [EMAIL PROTECTED] To: 1LT John W. Holmes [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, October 07, 2002 10:08 AM Subject: Re: [PHP] File download doesn't work with SSL Does it work

Re: [PHP] File download doesn't work with SSL

2002-10-07 Thread Rasmus Lerdorf
, October 07, 2002 10:08 AM Subject: Re: [PHP] File download doesn't work with SSL Does it work with a different browser? Smells like an IE bug to me. On Mon, 7 Oct 2002, 1LT John W. Holmes wrote: Everyone, I've had a simple download script working where a user would click on a link

Re: [PHP] File download doesn't work with SSL

2002-10-07 Thread Rouvas Stathis
07, 2002 10:08 AM Subject: Re: [PHP] File download doesn't work with SSL Does it work with a different browser? Smells like an IE bug to me. On Mon, 7 Oct 2002, 1LT John W. Holmes wrote: Everyone, I've had a simple download script working where a user would click

Re: [PHP] File download doesn't work with SSL

2002-10-07 Thread 1LT John W. Holmes
John W. Holmes [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, October 07, 2002 10:08 AM Subject: Re: [PHP] File download doesn't work with SSL Does it work with a different browser? Smells like an IE bug to me. On Mon, 7 Oct 2002, 1LT John W. Holmes wrote

Re: [PHP] File download doesn't work with SSL

2002-10-07 Thread Rouvas Stathis
Holmes... - Original Message - From: Rouvas Stathis [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: 1LT John W. Holmes [EMAIL PROTECTED] Sent: Monday, October 07, 2002 2:00 PM Subject: Re: [PHP] File download doesn't work with SSL John, problem is broken HTTP/1.1 implementation

Re: [PHP] File download doesn't work with SSL

2002-10-07 Thread Chris Shiflett
Are you sure? I think (I might be wrong) using PHP sessions automatically sends the Cache-Control header. I cannot remember what directives it uses. Perhaps the fact that you do not use correct case makes PHP miss the fact that you want to reassign Cache-Control to use a different value? If

RE: [PHP] File download doesn't work with SSL

2002-10-07 Thread John W. Holmes
PROTECTED]] Sent: Monday, October 07, 2002 8:45 PM To: Rasmus Lerdorf Cc: 1LT John W. Holmes; [EMAIL PROTECTED] Subject: Re: [PHP] File download doesn't work with SSL Are you sure? I think (I might be wrong) using PHP sessions automatically sends the Cache-Control header. I cannot remember

Re: [PHP] File download doesn't work with SSL

2002-10-07 Thread Chris Shiflett
You can have multiple directives in that header: Cache-Control: no-cache, no-store Do you have a way to view the HTTP? Chris John W. Holmes wrote: I had tried it with both cases, actually, just to be sure. It did not make a difference. If the session is sending a no-cache header, would then

RE: [PHP] File download doesn't work with SSL

2002-10-07 Thread John W. Holmes
You can have multiple directives in that header: Cache-Control: no-cache, no-store Do you have a way to view the HTTP? No. Can you recommend a good method on windows? Should I get lynx or does opera have a method to view all the headers? ---John Holmes... -- PHP General Mailing List

RE: [PHP] File download doesn't work with SSL

2002-10-07 Thread Peter Houchin
You can have multiple directives in that header: Cache-Control: no-cache, no-store Do you have a way to view the HTTP? No. Can you recommend a good method on windows? Should I get lynx or does opera have a method to view all the headers? can't you view all headers etc in the source

Re: [PHP] File download doesn't work with SSL

2002-10-07 Thread Chris Shiflett
Yes, you're right. You might want to turn off the forced SSL temporarily to debug this, if that's possible. Nothing other than your browser or the Web server will be able to show you the HTTP communication over SSL, because it's all trash to everything in between. There may be settings in

RE: [PHP] File download doesn't work with SSL

2002-10-07 Thread John W. Holmes
. :) ---John Holmes... -Original Message- From: Chris Shiflett [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 11:22 PM To: [EMAIL PROTECTED] Cc: 'Tom Rogers'; [EMAIL PROTECTED] Subject: Re: [PHP] File download doesn't work with SSL Yes, you're right. You might want