Welcome Guest, Not a member yet? Register   Sign In
Error when data is output via ajax when GZIP enabled
#1

[eluser]codedrunk[/eluser]
Firebug is showing that my desired output is in fact generated, but right behind it is an error message:

Code:
<b>Fatal error</b>:  ob_start() [&lt;a href='ref.outcontrol'&gt;ref.outcontrol&lt;/a&gt;]: Cannot use

output buffering in output buffering display handlers in <b>/var/www/CI/system/libraries/Exceptions

.php</b> on line <b>160</b><br />

I'm guessing it's because the data is just echo'd out rather than through CI's output method?

Does anyone know how I would be able to fix this?

Thanks in advance!
#2

[eluser]Pascal Kriete[/eluser]
That's exactly right, what you want to do instead is set the output and let ci display it:
Code:
$this->output->set_output($thestuffyouechoed);

Make sure there are no other echos or outputs though.
#3

[eluser]codedrunk[/eluser]
EDIT: it works, thanks for the help! I was editing the wrong file hehe, I guess that happens!




Theme © iAndrew 2016 - Forum software by © MyBB