I can see certain dates above error
I'm using able2know mod_rewrite and seo,
enabled gzip forum admin,
and my php info : lavinya.net /phpinfo.php
please help me..
--
EDİT:
Only mozilla and firefox I See error.
Moderator: Moderators

if ( $board_config['gzip_compress'] )if ( $do_gzip_compress )
if ( $do_gzip_compress )
if ( !$userdata['session_logged_in'] )
{
$contents = ob_get_contents();
ob_end_clean();
echo replace_for_mod_rewrite($contents);
global $dbg_starttime;
}includes/page_tail.phpif ( !$userdata['session_logged_in'] )
{
$contents = ob_get_contents();
ob_end_clean();
echo replace_for_mod_rewrite($contents);
global $dbg_starttime;
}
//
// Compress buffered output if required and send to browser
//
if ( $do_gzip_compress )
{
//
// Borrowed from php.net!
//
$gzip_contents = ob_get_contents();
ob_end_clean();
$gzip_size = strlen($gzip_contents);
$gzip_crc = crc32($gzip_contents);
$gzip_contents = gzcompress($gzip_contents, 9);
$gzip_contents = substr($gzip_contents, 0, strlen($gzip_contents) - 4);
echo "\x1f\x8b\x08\x00\x00\x00\x00\x00";
echo $gzip_contents;
echo pack('V', $gzip_crc);
echo pack('V', $gzip_size);
}// www.phpBB-SEO.com SEO TOOLKIT BEGIN
if( function_exists(ob_gzhandler) && $board_config['gzip_compress'] == 1)
{
if ( !$userdata['session_logged_in'] )
{
$gzip_contents = replace_for_mod_rewrite(ob_get_contents());
}
else
{
$gzip_contents = ob_get_contents();
}
ob_end_clean();
ob_start('ob_gzhandler');
echo $gzip_contents;
ob_end_flush();
}
else
{
$contents = ob_get_contents();
ob_end_clean();
echo $contents;
global $dbg_starttime;
}
// www.phpBB-SEO.com SEO TOOLKIT END

lavinya wrote:sorry dcz. small english![]()
using seslisozluk.com

//
// gzip_compression
//
$do_gzip_compress = FALSE;
if ( $board_config['gzip_compress'] )
{
$phpver = phpversion();
$useragent = (isset($HTTP_SERVER_VARS['HTTP_USER_AGENT'])) ? $HTTP_SERVER_VARS['HTTP_USER_AGENT'] : getenv('HTTP_USER_AGENT');
if ( $phpver >= '4.0.4pl1' && ( strstr($useragent,'compatible') || strstr($useragent,'Gecko') ) )
{
if ( extension_loaded('zlib') )
{
ob_start('ob_gzhandler');
}
}
else if ( $phpver > '4.0' )
{
if ( strstr($HTTP_SERVER_VARS['HTTP_ACCEPT_ENCODING'], 'gzip') )
{
if ( extension_loaded('zlib') )
{
$do_gzip_compress = TRUE;
ob_start();
ob_implicit_flush(0);
header('Content-Encoding: gzip');
}
}
}
}if ( !$userdata['session_logged_in'] )
{
ob_start(); ob_start();
if ( !$userdata['session_logged_in'] )
{



Users browsing this forum: No registered users and 5 guests