ejasoft
02-14-2006, 01:38 AM
hi all,
i have one problem
the output is output once
i love to use flush() function put i get the all page once
iam add after etch block the flush function put the output apper fully once
i am trying to add usleep() function after evry flush and still get the body fully once
my server system liunx and the function flush working good with any vb forum in this server
// sorry for bad english
-------------------------------
this is my script that i need to flush the header block frist
http://wd.nilesolutions.org/
in the top off my php files i added this code
ob_implicit_flush(FALSE);
if (!headers_sent()
AND function_exists('ob_start')
AND function_exists('crc32')
AND function_exists('gzcompress'))
{
$output_handler = @ini_get('output_handler');
if ($output_handler != 'ob_gzhandler')
{
@ob_end_clean();
}
ob_start();
}
i used template system ok, so after parse any block i added the flush function ,
Any ideas on how to fix this?
thanks ,:)
i have one problem
the output is output once
i love to use flush() function put i get the all page once
iam add after etch block the flush function put the output apper fully once
i am trying to add usleep() function after evry flush and still get the body fully once
my server system liunx and the function flush working good with any vb forum in this server
// sorry for bad english
-------------------------------
this is my script that i need to flush the header block frist
http://wd.nilesolutions.org/
in the top off my php files i added this code
ob_implicit_flush(FALSE);
if (!headers_sent()
AND function_exists('ob_start')
AND function_exists('crc32')
AND function_exists('gzcompress'))
{
$output_handler = @ini_get('output_handler');
if ($output_handler != 'ob_gzhandler')
{
@ob_end_clean();
}
ob_start();
}
i used template system ok, so after parse any block i added the flush function ,
Any ideas on how to fix this?
thanks ,:)