Tim Green - 2003-07-05

Logged In: YES
user_id=169944

A quick way to work around this bug until it's resolved is to
use PHP's auto_prepend_file and auto_append_file options in
the PHP.ini (you can do this via the .htaccess if you've not
got access to your PHP.ini).

Create a file called prepend.php and in it put:-

<?php ob_start(); ?>

And put this filename in the auto_prepend_file directive, and
then create another file called append.php and in it put:-

<?php ob_end_flush(); ?>

Put this filename in the auto_append_file directive.

The page should now work (or at least it does for me).