studentofstone Posted February 18, 2011 Share Posted February 18, 2011 Cannot modify header information - headers already sent by (output started at ) on line 179 I labeled 179 its at the bottom. I understand this means its already generating the html but not how or where. A solution would of course be nice but if some one could tell me even how to figure it out it would be great. <?php if(isset($_POST['email'])) { // EDIT THE 2 LINES BELOW AS REQUIRED $email_to = "test@test.com"; $email_subject = "$mile"; function died($error) { // your error code can go here echo "We are very sorry, but there were error(s) found with the form you submitted. "; echo "These errors appear below.<br /><br />"; echo $error."<br /><br />"; echo "Please go back and fix these errors.<br /><br />"; die(); } /*"trail_section_mile", float dash "trail_section_name", #9()alphanumeric "name", "date"auto date "email",same "telephone" same "trail_condition" no validation just sanitize size limit "attention_area" no validation just sanitize size limit "under_20" no validation just sanitize size limit "_20_54" no validation just sanitize size limit "_55_over" no validation just sanitize size limit */ if(!isset($_POST['trail_section_mile']) ) { died('1'); } if(!isset($_POST['trail_section_name']) ) { died('2'); } if(!isset($_POST['name']) ) { died('3'); } if(!isset($_POST['email']) ) { died('4'); } if(!isset($_POST['telephone']) ) { died('5'); } if(!isset($_POST['trail_condition']) ) { died('6'); } if(!isset($_POST['attention_area']) ) { died('7'); } if(!isset($_POST['under_20']) ) { died('8'); } if(!isset($_POST['_20_54']) ) { died('9'); } if(!isset($_POST['_55_over']) ) { died('0'); } if(!isset($_POST['total_hours']) ) { died('011'); } //comments field is a honeypot require ('Validate.php'); $email = $_REQUEST['email']; $validate = new Validate(); if (!Validate::email($email, array('check_domain' => true, 'use_rfc822' =>true))) { echo "Invalid email"; } $trail_section_mile = $_POST['trail_section_mile']; // required $trail_section_name = $_POST['trail_section_name']; // required $name = $_POST['name']; // required $email = $_POST['email']; // required $telephone = $_POST['telephone']; // required $trail_condition = $_POST['trail_condition']; // required $attention_area = $_POST['attention_area']; // required $under_20 = $_POST['under_20']; $_20_54 = $_POST['_20_54']; $_55_over = $_POST['_55_over']; $_55_over = $_POST['total_hours']; // required if (preg_match('/[\d\D\b\B\s\S]/', $comments)) { echo "nope"; } if (!preg_match("/([\w\.\#\-\,]{1,30})+/", $trail_section_mile)) {echo "please enter the section mile markers again only numbers, decimals dashes and # are aloud"; } if (!preg_match("/[a-z'-]+/", $trail_section_name)) { echo "Try your last name again."; } if (!preg_match("/[a-z'-]+/", $name)) { echo "please re-type your address."; } if (!preg_match("/^\(?([0-9]{3})\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})$/i", $telephone)) { echo "Something is wrong with the phone number you intered. Please enter your area code first then ther rest of tyour number."; } if (( preg_match( "/[\r\n]/", $first_name ) || preg_match( "/[\r\n]/", $email ) || preg_match( "/[\r\n]/", $last_name) ) || preg_match( "/[\r\n]/", $state)) { echo "nope"; } $trail_section_mile = strip_tags($trail_section_mile); $trail_section_name = strip_tags($trail_section_name); $name =strip_tags($name); $email = strip_tags($email); $telephone = strip_tags($telephone); $trail_condition = strip_tags($trail_condition); $attention_area = strip_tags($attention_area); $under_20 = strip_tags($under_20); $_20_54 = strip_tags($_20_54); $_55_over = strip_tags($_55_over); $total_hours = strip_tags($total_hours); $trail_section_mile = htmlspecialchars($trail_section_mile); $trail_section_name = htmlspecialchars($trail_section_name); $name = htmlspecialchars($name); $email = htmlspecialchars($email); $telephone = htmlspecialchars($telephone); $trail_condition = htmlspecialchars($trail_condition); $attention_area = htmlspecialchars($attention_area); $under_20 = htmlspecialchars($under_20); $under_20 = htmlspecialchars($_20_54); $_55_over = htmlspecialchars($_55_over); $total_hours = htmlspecialchars($total_hours); $email_message = "Form details below.\n\n"; $email_message = date("m/d/Y") . "\n"; function clean_string($string) { $bad = array("content-type","bcc:","to:","cc:","href"); return str_replace($bad,"",$string); } $email_message .= "Trail Section Mile Markers: ".clean_string($trail_section_mile)."\n"; $email_message .= "Trail Section Name : ".clean_string($trail_section_name)."\n"; $email_message .= "Reported by: ".clean_string($name)."\n"; $email_message .= "Email Address: ".clean_string($email)."\n"; $email_message .= "Telephone Number: ".clean_string($telephone)."\n"; $email_message .= "General Trail Condition : ".clean_string($trail_condition)."\n"; $email_message .= "Mile #/Problem/Suggested Improvements: ".clean_string($attention_area)."\n"; $email_message .= "Volunteers Under Age 20 #Males/#Females/Ethnicity/Name: ".clean_string($under_20)."\n"; $email_message .= " Volunteers Ages 20 to 54 #Males/#Females/Ethnicity/Name: ".clean_string($_20_54)."\n"; $email_message .= "Volunteers Age 55+ #Males/#Females/Ethnicity/Name: ".clean_string($_55_over)."\n"; $email_message .= "Total Volunteer Hours: ".clean_string($total_hours)."\n"; $about ="Maintenance Report from" .$name. "/n"; // create email headers $headers = 'Subject : '.$about."/r/n" .'From: '.$email."\r\n" .'Reply-To: '.$email."\r\n" . 'X-Mailer: PHP/' . phpversion(); header("Location: oht/maintenance/maintenance-report/thank-you/"); //line 179 @mail($email_to, $email_subject, $email_message, $headers); ?> <?php } ?> MOD EDIT: . . . BBCode tags added. Quote Link to comment https://forums.phpfreaks.com/topic/228146-i-have-a-form-that-is-sending-back-a-cannot-modify-header-information/ Share on other sites More sharing options...
Pikachu2000 Posted February 18, 2011 Share Posted February 18, 2011 When posting code, please enclose it within the forum's . . . BBCode tags. Did you read the sticky topic: 'HEADER ERRORS - READ HERE BEFORE POSTING THEM'? Quote Link to comment https://forums.phpfreaks.com/topic/228146-i-have-a-form-that-is-sending-back-a-cannot-modify-header-information/#findComment-1176525 Share on other sites More sharing options...
studentofstone Posted February 19, 2011 Author Share Posted February 19, 2011 First apologies about not nesting. I typed instead of . Yes I read it but it doesn't make sense to me for my application of the header, or I am misunderstanding it. The code is sending the form data as an email. How would a meta tag work here to redirect? $headers = 'Subject : '.$about."/r/n" .'From: '.$email."\r\n" .'Reply-To: '.$email."\r\n" . 'X-Mailer: PHP/' . phpversion(); header("Location: oht/maintenance/maintenance-report/thank-you/"); //line 179 @mail($email_to, $email_subject, $email_message, $headers); Quote Link to comment https://forums.phpfreaks.com/topic/228146-i-have-a-form-that-is-sending-back-a-cannot-modify-header-information/#findComment-1176543 Share on other sites More sharing options...
PFMaBiSmAd Posted February 19, 2011 Share Posted February 19, 2011 The error message tells you where the output is occurring at (file and line number) that is preventing the header from working. Since you didn't post that part of the error message, it is not possible for anyone here to directly help you with the problem. Quote Link to comment https://forums.phpfreaks.com/topic/228146-i-have-a-form-that-is-sending-back-a-cannot-modify-header-information/#findComment-1176548 Share on other sites More sharing options...
Pikachu2000 Posted February 19, 2011 Share Posted February 19, 2011 Post the complete error message, please. Quote Link to comment https://forums.phpfreaks.com/topic/228146-i-have-a-form-that-is-sending-back-a-cannot-modify-header-information/#findComment-1176549 Share on other sites More sharing options...
studentofstone Posted February 19, 2011 Author Share Posted February 19, 2011 Warning: Cannot modify header information - headers already sent by (output started at /hermes/web04/b2179/moo.hankkaminsky/oht/oht/wp-content/plugins/maintainance.php:1) in /hermes/web04/b2179/moo.hankkaminsky/oht/oht/wp-content/plugins/maintainance.php on line 179 Quote Link to comment https://forums.phpfreaks.com/topic/228146-i-have-a-form-that-is-sending-back-a-cannot-modify-header-information/#findComment-1176552 Share on other sites More sharing options...
Pikachu2000 Posted February 19, 2011 Share Posted February 19, 2011 Is this file included in maintainance.php, or vice versa? Quote Link to comment https://forums.phpfreaks.com/topic/228146-i-have-a-form-that-is-sending-back-a-cannot-modify-header-information/#findComment-1176553 Share on other sites More sharing options...
studentofstone Posted February 19, 2011 Author Share Posted February 19, 2011 oh, I am an idiot. This is, the code I mis- posted is, maintainance.php Quote Link to comment https://forums.phpfreaks.com/topic/228146-i-have-a-form-that-is-sending-back-a-cannot-modify-header-information/#findComment-1176559 Share on other sites More sharing options...
studentofstone Posted February 19, 2011 Author Share Posted February 19, 2011 this is the file the form data is posting to, this is the file that is giving me the error. Quote Link to comment https://forums.phpfreaks.com/topic/228146-i-have-a-form-that-is-sending-back-a-cannot-modify-header-information/#findComment-1176562 Share on other sites More sharing options...
litebearer Posted February 19, 2011 Share Posted February 19, 2011 time for a double scotch neat Quote Link to comment https://forums.phpfreaks.com/topic/228146-i-have-a-form-that-is-sending-back-a-cannot-modify-header-information/#findComment-1176571 Share on other sites More sharing options...
studentofstone Posted February 19, 2011 Author Share Posted February 19, 2011 I would like to propose a toast to the crappiest post I have ever made. May there be none crappier. Quote Link to comment https://forums.phpfreaks.com/topic/228146-i-have-a-form-that-is-sending-back-a-cannot-modify-header-information/#findComment-1176573 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.