This type of question is already asked before
Codeigniter: headers already sent error
CodeIgniter headers already sent error with different Server
Codeigniter - Cannot modify header information - headers already sent by
Codeigniter: Message: Cannot modify header information - headers already sent by (output started at
http://ellislab.com/forums/viewthread/69280/#468283
Codeigniter: Message: Cannot modify header information - headers already sent by (output started at
Exact Error I am Getting
Severity: Warning
Message: Cannot modify header information - headers already sent by (output started at /home2/hanomart/public_html/ClickMyStay/application/controllers/welcome.php:472)
Filename: libraries/Session.php
Line Number: 675
What i am doing at welcome.php:472 Line
I am changing a session value like as below
$value="Some Value";
$session_data=array("hotel_search_value" => $value);
$this->session->set_userdata($session_data);
I have tried in below ways.
- Checked White spaces
before <?php and after ?>
(Everything is fine.No white spaces). - Changed $_SERVER['REMOTE_ADDR'] to $this->server('remote_addr') in line system/core/Input.php Line no 351
But those things didnt solve my problem.
Can anyone help me out in this issue.
Thanks in advance,
Sree ram