Hi All, My site as just gone down today and i am getting this error: Unable to add cookies, header already sent. File: /home/talkhome/public_html/index.php Line: 1 Looking for someone to fix it ASAP and i will pay. Please just check out the url and you will see the error: www.talkhomebusiness.com
send me your file, I ll look into it and fix it (must be some white space or something like that as mentioned by srobona)
You could also give headers_sent a try. Never had cause to use it myself but it looks like it should be able to help you.
You are trying to set a cookie after an "include" or "require" command. These are being used to include your template... Either put the "setcookie" command above the include, or put the include command after it. Reason is the same as mentioned in posts above, you cannot send anything to browser before you send a cookie (if sending a cookie). Bye