Re: [PHP] HTTP Compression

2002-06-14 Thread Daniel Tryba
On Fri, Jun 14, 2002 at 08:58:29AM +0100, Webmaster do Aborla.net wrote: > I would like to know how can I compress the output of PHP through Zlib. You mean like: http://www.php.net/manual/en/function.ob-gzhandler.php -- Daniel Tryba -- PHP General Mailing List (http://www.php.net/) To uns

RE: [PHP] HTTP compression

2001-02-04 Thread Sander Pilon
> Sean, > > Thanks, I see. How about headers ? Do they need to be compressed, too; in > other words, do headers "belong" to the output ? How about RTFR? :) (Read the .. RFC.) Really, when you've read http://www.faqs.org/rfcs/rfc2616.html you'll be able to understand a lot more about how htt

RE: [PHP] HTTP compression

2001-02-04 Thread Sander Pilon
Check the http 1.1 rfc - http://www.faqs.org/rfcs/rfc2616.html It links to the gzip file format rfc - http://www.faqs.org/rfcs/rfc1952.html > -Original Message- > From: Carsten Gehling [mailto:[EMAIL PROTECTED]] > Sent: 4 February 2001 19:19 > To: [EMAIL PROTECTED] > Su

Re: [PHP] HTTP compression

2001-02-04 Thread Teodor Cimpoesu
Carsten Gehling wrote: > > From: "Teodor Cimpoesu" <[EMAIL PROTECTED]> > Sent: Sunday, February 04, 2001 7:08 PM > > > a HTTP response is made of response header(s) and the response body. > > Only the body > > is compressed, and this is signaled in the headers so the User Agent > > will know >

Re: [PHP] HTTP compression

2001-02-04 Thread Carsten Gehling
From: "Teodor Cimpoesu" <[EMAIL PROTECTED]> Sent: Sunday, February 04, 2001 7:08 PM > a HTTP response is made of response header(s) and the response body. > Only the body > is compressed, and this is signaled in the headers so the User Agent > will know > not to stare to a bunch of binary data :)

RE: [PHP] HTTP compression

2001-02-04 Thread Alain Fontaine
Teodor, Looked at it from that point of view, the question was pretty stupid ! ;) > -Message d'origine- > De : Teodor Cimpoesu [mailto:[EMAIL PROTECTED]] > Envoye : dimanche 4 fevrier 2001 19:09 > A : Alain Fontaine > Cc : Sean Cazzell; [EMAIL PROTECTED] >

Re: [PHP] HTTP compression

2001-02-04 Thread Teodor Cimpoesu
Alain Fontaine wrote: > > Sean, > > Thanks, I see. How about headers ? Do they need to be compressed, too; in > other words, do headers "belong" to the output ? a HTTP response is made of response header(s) and the response body. Only the body is compressed, and this is signaled in the header

RE: [PHP] HTTP compression

2001-02-04 Thread Alain Fontaine
ine > Cc : [EMAIL PROTECTED] > Objet : RE: [PHP] HTTP compression > > > Alain, > > When PHP parses a file, it treats the stuff that's not in blocks > as though each line were a print or echo statement. So your whole file > will be compressed and sent to the browser. &

RE: [PHP] HTTP compression

2001-02-04 Thread Sean Cazzell
ecause some part of the output is not "passing > through" PHP, right ? > > > -Message d'origine- > > De : Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] > > Envoye : dimanche 4 fevrier 2001 14:34 > > A : Alain Fontaine > > Cc : [EMAIL PROTECTED] > &

RE: [PHP] HTTP compression

2001-02-04 Thread Alain Fontaine
t "passing through" PHP, right ? > -Message d'origine- > De : Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] > Envoye : dimanche 4 fevrier 2001 14:34 > A : Alain Fontaine > Cc : [EMAIL PROTECTED] > Objet : Re: [PHP] HTTP compression > > > > I've just

Re: [PHP] HTTP compression

2001-02-04 Thread Rasmus Lerdorf
> I've just started experimenting with ob_start("ob_gzhandler") a bit, and I > have found that if any output is generated before ob_start() is called, > nothing at all gets compressed; if ob_start() is called before any output, > everything is compressed. > > Is this the case, I mean, is this "by