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

2002-10-08 Thread John W. Holmes
9:55 AM > To: John W. Holmes > Cc: 'Tom Rogers'; [EMAIL PROTECTED] > Subject: RE: Re[2]: [PHP] File download doesn't work with SSL > > Right, I figured you knew this as it is documented. You can change that > in your php.ini file using the session.cache_limit

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

2002-10-08 Thread Rasmus Lerdorf
-John Holmes... > > > -Original Message- > > From: John W. Holmes [mailto:[EMAIL PROTECTED]] > > Sent: Tuesday, October 08, 2002 8:08 AM > > To: 'Rasmus Lerdorf'; 'Tom Rogers' > > Cc: [EMAIL PROTECTED] > > Subject: RE: Re[2]: [PHP] File dow

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

2002-10-08 Thread John W. Holmes
[EMAIL PROTECTED] > Subject: RE: Re[2]: [PHP] File download doesn't work with SSL > > Okay, I tried just a page with only session_start() in it and the page > does send a no-cache, no-store header. > > output from wget > > D:\wget>wget -S http:/

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

2002-10-08 Thread John W. Holmes
esday, October 08, 2002 1:00 AM > To: Tom Rogers > Cc: John W. Holmes; [EMAIL PROTECTED] > Subject: Re[2]: [PHP] File download doesn't work with SSL > > Why not just a simple wget -S https://... to see the headers? > > On Tue, 8 Oct 2002, Tom Rogers wrote: > > > Hi

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

2002-10-07 Thread Rasmus Lerdorf
Why not just a simple wget -S https://... to see the headers? On Tue, 8 Oct 2002, Tom Rogers wrote: > Hi, > > Tuesday, October 8, 2002, 1:32:16 PM, you wrote: > JWH> Thanks for the help guys. Like I said, the download works fine as long > JWH> as it's not over SSL. I will try to disable it and s

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

2002-10-07 Thread Tom Rogers
Hi, Tuesday, October 8, 2002, 1:32:16 PM, you wrote: JWH> Thanks for the help guys. Like I said, the download works fine as long JWH> as it's not over SSL. I will try to disable it and see if I can look at JWH> the headers sent to see if a no-cache header is being sent, even though JWH> I haven't

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

2002-10-07 Thread John W. Holmes
the grunt work, at least. :) ---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 do

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 Oper

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

2002-10-07 Thread Tom Rogers
Hi, Tuesday, October 8, 2002, 12:59:40 PM, you wrote: JWH> Wouldn't everything be encrypted, though, since it's over SSL? Including JWH> the headers? JWH> Unfortunately, the way they set up the server, it will not process any JWH> unsecured requests now. JWH> ---John Holmes... Yes it is encry

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

2002-10-07 Thread John W. Holmes
> Tuesday, October 8, 2002, 12:13:59 PM, you wrote: > >> You can have multiple directives in that header: > >> > >> Cache-Control: no-cache, no-store > >> > >> Do you have a way to view the HTTP? > > JWH> No. Can you recommend a good method on windows? Should I get lynx or > JWH> does opera have

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

2002-10-07 Thread Tom Rogers
Hi, Tuesday, October 8, 2002, 12:13:59 PM, you wrote: >> You can have multiple directives in that header: >> >> Cache-Control: no-cache, no-store >> >> Do you have a way to view the HTTP? JWH> No. Can you recommend a good method on windows? Should I get lynx or JWH> does opera have a method to

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

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 L

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 >the

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

2002-10-07 Thread John W. Holmes
[EMAIL 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 t

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 t

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

2002-10-07 Thread Rouvas Stathis
rding this issue? > > ---John 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 >

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

2002-10-07 Thread 1LT John W. Holmes
'excel'"); > > > header("content-disposition: attachment; filename=" . $filename . > > > ".xls"); > > > > > > and I'm still getting the same thing. Is the no-cache cache-control header > > > s

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

2002-10-07 Thread Rouvas Stathis
; code. > > > > Any help is appreciated. > > > > ---John Holmes... > > > > ----- Original Message - > > From: "Rasmus Lerdorf" <[EMAIL PROTECTED]> > > To: "1LT John W. Holmes" <[EMAIL PROTECTED]> > > Cc: <[EM

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

2002-10-07 Thread Rasmus Lerdorf
> - 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 w

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

2002-10-07 Thread 1LT John W. Holmes
sent automatically by PHP at all? I don't have one set explicitly 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]&

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... help me... ---John Holmes... > > Everyone,

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

[PHP] File download doesn't work with SSL

2002-10-07 Thread 1LT John W. Holmes
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 opened in the appropriate program and the user could save/edit it. Now that we've loaded everything under SSL, it does