![]() |
What does this error mean - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: What does this error mean (/showthread.php?tid=30653) |
What does this error mean - El Forum - 05-21-2010 [eluser]hogofwar[/eluser] I keep getting this error : Code: Fatal error: ob_start() [<a href='ref.outcontrol'>ref.outcontrol</a>]: Cannot use output buffering in output buffering display handlers in *snipped*/system/libraries/Exceptions.php on line 162 what does it mean and how can I fix it? if you need any more information please just ask, this error is driving me crazy! What does this error mean - El Forum - 05-21-2010 [eluser]WanWizard[/eluser] You have compression enabled and you're trying to generate some output (p.e. with echo) without using the output class. What does this error mean - El Forum - 05-21-2010 [eluser]hogofwar[/eluser] Oh thanks! Just wasn't thinking at all *faceplant* What does this error mean - El Forum - 05-24-2010 [eluser]sihijau[/eluser] i have this problem too, Fatal error: ob_start() [<a href='ref.outcontrol'>ref.outcontrol</a>]: Cannot use output buffering in output buffering display handlers in /home/nuazlnet/public_html/lapak/system/libraries/Exceptions.php on line 162 what solution for this problem? ---------- Oh i have solve this problem, to set this line in config.php to be FALSE ![]() Code: $config['compress_output'] = TRUE; What does this error mean - El Forum - 05-25-2010 [eluser]hogofwar[/eluser] Yeah that's what we were talking 'bout! ![]() What does this error mean - El Forum - 08-08-2010 [eluser]Nexus Rex[/eluser] Add this line to suppress the compression... Code: $this->config->set_item('compress_output', FALSE); What does this error mean - El Forum - 12-16-2010 [eluser]cereal[/eluser] [quote author="Nexus Rex" date="1281276530"]Add this line to suppress the compression... Code: $this->config->set_item('compress_output', FALSE); This helped me to render pdf with dompdf, thank you! ![]() What does this error mean - El Forum - 06-03-2012 [eluser]Unknown[/eluser] my site tvmoren.ru $config['compress_output'] = FALSE; but i have error Fatal error: ob_start() [<a href='ref.outcontrol'>ref.outcontrol</a>]: Cannot use output buffering in output buffering display handlers in /home/u23877/domains/tvmoren.ru/public_html/system/core/Exceptions.php on line 181 |