Re: [PHP] stripping with an OB callback

2006-09-22 Thread Richard Lynch
On Wed, September 20, 2006 7:13 pm, Christopher Watson wrote: I've been coding with PHP for maybe a year. So I'm somewhat new to it. But I've learned quickly, and created a fairly serious LAMP app that is capable of returning large query results. During my investigation into various means

Re: [PHP] stripping with an OB callback

2006-09-22 Thread Richard Lynch
Cannot compression be set in .htaccess? Or even within the script??? I suspect you could even find a PHP class out there to compress and send the right headers to do it all in PHP, regardless of server settings... On Wed, September 20, 2006 7:33 pm, Christopher Watson wrote: Hi Robert, Well,

Re: [PHP] stripping with an OB callback [SOLVED]

2006-09-22 Thread Christopher Watson
Thanks for the follow-up Richard. I am now bracketing my Fusebox core includes with ob_start(ob_gzhandler) and ob_end_flush(). It's done wonders for those large query results. And since there is absolutely nothing in this app that relies on multiple contiguous whitespace characters, I'm good

[PHP] stripping with an OB callback

2006-09-20 Thread Christopher Watson
I've been coding with PHP for maybe a year. So I'm somewhat new to it. But I've learned quickly, and created a fairly serious LAMP app that is capable of returning large query results. During my investigation into various means for incrementally reducing the response sizes, I've discovered

Re: [PHP] stripping with an OB callback

2006-09-20 Thread Robert Cummings
On Wed, 2006-09-20 at 17:13 -0700, Christopher Watson wrote: I've been coding with PHP for maybe a year. So I'm somewhat new to it. But I've learned quickly, and created a fairly serious LAMP app that is capable of returning large query results. During my investigation into various means

Re: [PHP] stripping with an OB callback

2006-09-20 Thread Robert Cummings
On Wed, 2006-09-20 at 20:21 -0400, Robert Cummings wrote: On Wed, 2006-09-20 at 17:13 -0700, Christopher Watson wrote: I've been coding with PHP for maybe a year. So I'm somewhat new to it. But I've learned quickly, and created a fairly serious LAMP app that is capable of returning large

Re: [PHP] stripping with an OB callback

2006-09-20 Thread Christopher Watson
Hi Robert, Well, I think the main reason I'm not using transparent output compression is because this app shares php.ini with several other PHP apps on the server, and I don't want to foist this change on the admins of those apps. I was trying to come up with a localized strategy for trimming

Re: [PHP] stripping with an OB callback

2006-09-20 Thread Robert Cummings
On Wed, 2006-09-20 at 17:33 -0700, Christopher Watson wrote: Hi Robert, Well, I think the main reason I'm not using transparent output compression is because this app shares php.ini with several other PHP apps on the server, and I don't want to foist this change on the admins of those apps.

Re: [PHP] stripping with an OB callback

2006-09-20 Thread Christopher Watson
Bingo! That's the ticket. Thanks, Robert. -Christopher On 9/20/06, Robert Cummings [EMAIL PROTECTED] wrote: Why settle for 30% speed boost when you can get 90% ... http://ca3.php.net/manual/en/function.ob-gzhandler.php :) -- PHP General Mailing List (http://www.php.net/) To