matrix0978 Posted May 31, 2005 Posted May 31, 2005 (edited) http://www.xpertgeeks.com Edited April 24, 2006 by matrix0978
TomcaT Posted June 3, 2005 Posted June 3, 2005 I had a similar issue in my phpBB forum site when I added a page, I included a file that had already sent the headers, which is what I think the faq_variables code might be doing...... I am no expert in PHP only having learned how to code in it this year.....What is in the faq_variables code??It is not a MySQL error........
eXPerience-XP Posted June 6, 2005 Posted June 6, 2005 its giving u a headers already sent which means you are probably tryign to put the cookie after some PHP.... you MUST always deal with cookies before u put any other PHP in or it will give u that error
eXPerience-XP Posted June 6, 2005 Posted June 6, 2005 (edited) This often happens when you try to start a session, send a cookie, or use header function. This is because all of these modify / change the headers of the page, and they cant be done if they are already set. Sessions are automatically sent when you send anything to the page. Post the code to faq_admin.php because the error is in there Edited June 6, 2005 by eXPerience-XP
pre Posted June 11, 2005 Posted June 11, 2005 Post the top part of the script, otherwise how are we meant to debug it?
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now