Hello All,

I am making headway but I still seem to be having some problems.

Whenever I have  executing I get the following
message:

<b>Warning</b>:  ob_gzhandler() [<a 
href='http://www.php.net/ref.outcontrol'>ref.outcontrol</a>]: output handler 
'ob_gzhandler' cannot be used twice
in

This happens on ob_end_flush()  The strange thing is that ob_start("ob_gzhandler")
only exists ONCE! in the source file.  I do have other
ob_start("handler") calls but they never call ob_gzhandler().

I do use the following function to ensure that ALL handlers are called
and flushed:
function ob_end_flush_all () {
        while ( ob_get_level() ) {
                ob_end_flush();
        }
}

I'm getting this error on ob_end_flush()

Someone please help...

Serge.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to