Originally posted by softwarefreak
View Post
How to create gzip compression
Collapse
X
-
what if he need to output before the script ends :P. Just trying to be smart ;), thanks for info.
-
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();
Leave a comment:
-
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();
Leave a comment:
-
add 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');
}
Leave a comment:
-
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.
Leave a comment:
-
How to create gzip compression
master, please share tutorial create gzip compression for wapsiteTags: None
Leave a comment: