![]() |
Community Auth HTTP header error in Examples Recovery page - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: External Resources (https://forum.codeigniter.com/forumdisplay.php?fid=7) +--- Forum: Addins (https://forum.codeigniter.com/forumdisplay.php?fid=13) +--- Thread: Community Auth HTTP header error in Examples Recovery page (/showthread.php?tid=63775) |
Community Auth HTTP header error in Examples Recovery page - bngari - 12-09-2015 I am getting a Cannot modify header information - headers already sent by (output started at /path_to_my_files/application/controllers/Examples.php:322 error whenever I open the password recovery page in the codeigniter community auth system. kindly assist in solving this. The error is as below. Quote:A PHP Error was encountered RE: Community Auth HTTP header error in Examples Recovery page - InsiteFX - 12-09-2015 It means you are outputting data to the view so it can not send the headers again. Could be a blank space etc; Cookies have to be sent before any other output too the view. |