I am using CakePHP 1.3 and it keeps telling me the following.
Cannot modify header information
This ONLY happens when I include the Auth component.
var $components = array('Auth');
Am I doing something wrong, a bug, or what?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Headers have to be the first part of a web page that you send. Make sure that you haven’t outputted any other information before you try sending any kind of header.
This may also be useful