Hi all,
i want to compress my Webpage mit ob_gzhandler an send it to the browser.
My templates are all automatic generated and included with fopen.
If i change a template, nothing will change on the browser. It seems that the Server caches the Pages and don't send me the new version.
What can i do that the server sends me the new version of the Page?
function my_obstart()
{
$encoding = getenv("HTTP_ACCEPT_ENCODING");
if (eregi("gzip",$encoding))
{
ob_start("ob_gzhandler");
} else
{
ob_start();
}
}
This function will be the first line on every page.
any idear?
Thanks
berni
PS: sorry for my bad english 😉