Message: Cannot modify header information - headers already sent by (output started at etc. Filename: libraries/Session. |
[eluser]Unknown[/eluser]
CodeIgniter error: Message: Cannot modify header information - headers already sent by (output started at etc. Filename: libraries/Session.php SOLVED Solution: Autoload the Session.php Isolating the error that caused the error look at the code below: These lines: Code: $this->load->library('table'); exit(); did not produce an error. ==================================== These lines Code: $this->load->library('table'); or Code: $this->load->library('table');$this->load->library('session');exit(); A PHP Error was encountered Severity: Warning Message: Cannot modify header information - headers already sent by (output started at /var/www/bmak.ca/cssmenu.php:20) Filename: libraries/Session.php Line Number: 672 The solution: was to autoload session ref: http://ellislab.com/codeigniter/user-gui...oader.html made the change: Code: $autoload['libraries'] = array('session'); The above ERROR no longer occurred. |
Messages In This Thread |
Message: Cannot modify header information - headers already sent by (output started at etc. Filename: libraries/Session. - by El Forum - 11-20-2011, 08:10 AM
|