master, please share tutorial create gzip compression for wapsite
How to create gzip compression
Collapse
X
-
what do you want to do? Make gzip archives or gzip output compression?Originally posted by Rrobyf View Postmaster, please share tutorial create gzip compression for wapsite
Added after 3 minutes:
for output compression check zlib.output.compression or ob_gzhandler at php.net PHP: Runtime Configuration - Manual
Added after 2 minutes:
and again for creating files you can use zlib library, PHP: Zlib - Manual ,Last edited by mFreak; 06.08.12, 06:59.Progress:PHP Code:$("#mfreak").find(".head brain").clone();
Output:Code:[|||___________________________] : 5%
Support answer:Code:Memory limit reached, unable to complete operation.
Code:Try using a super uber strong mega computer to reach at least 10%.

-
and he should addOriginally posted by GumSlone View Postadd this on the top of your pages:
PHP Code:if(strstr($_SERVER["HTTP_ACCEPT_ENCODING"],"gzip"))
{
header("Content-Encoding: gzip");
header("Vary: Accept-Encoding");
ob_start('ob_gzhandler');
}
at the end of the script. But zlib ob is encouraged if its avaible, as I read somewhere.PHP Code:ob_end_flush();
Progress:PHP Code:$("#mfreak").find(".head brain").clone();
Output:Code:[|||___________________________] : 5%
Support answer:Code:Memory limit reached, unable to complete operation.
Code:Try using a super uber strong mega computer to reach at least 10%.

Comment
-
No need to add ob_end_flush() :P output is flushed by default :P until u don't use end clean :DOriginally posted by mFreak View Postand he should addat the end of the script. But zlib ob is encouraged if its avaible, as I read somewhere.PHP Code:ob_end_flush();
I need some facebook likes, can you please help me
http://facebook.com/softwarefreakin
I noticed social media is really powerful
Well DONE is better than well SAID
Comment
-
what if he need to output before the script ends :P. Just trying to be smart ;), thanks for info.Originally posted by softwarefreak View PostNo need to add ob_end_flush() :P output is flushed by default :P until u don't use end clean :DProgress:PHP Code:$("#mfreak").find(".head brain").clone();
Output:Code:[|||___________________________] : 5%
Support answer:Code:Memory limit reached, unable to complete operation.
Code:Try using a super uber strong mega computer to reach at least 10%.

Comment

Comment