CodeIgniter Forums
Error in page after some time - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22)
+--- Thread: Error in page after some time (/showthread.php?tid=58389)



Error in page after some time - El Forum - 06-09-2013

[eluser]Unknown[/eluser]
Hi i have a project in ci when i load my page the following error was display after certain time period

please help me
A PHP Error was encountered

Severity: Warning

Message: Cannot modify header information - headers already sent by (output started at /home/galaxyen/public_html/application/controllers/newarrival.php:65)

Filename: libraries/Session.php

Line Number: 675



Error in page after some time - El Forum - 06-10-2013

[eluser]XMadMax[/eluser]
Hey nsudarshan31,

This error are produced when the session tries to write the cookie in the header of the response, but other has starting to write text in this response.

This can be :

Any echo before
Any space after clossing php : ?> [SPACES]
A previous error, normally this error are shown in screen. Activate log and review ho is outputing before.

Xavier