php7の本番環境でエラーが出ます。
zeromail.phpでの問い合わせ機能です。
以前に作った人のソースで、自分はphpを触らないので(※wordpressやscss、css、htmlは問題ありません。)、エラーの解決が全く分かりません。
header('Location: '.SUCCESSPAGE); にエラーが出ているという指示がブラウザに出ていますが、直し方が分かりません。
ご教示ください。
Warning: Cannot modify header information - headers already sent by (output started at ディレクトリzeromail.php:676) in ディレクトリ
php
1//自動返信本文整形 2 if(strpos(PHPVER,'5') === false){ 3 $replymessage = unhtmlentities($replymessage); 4 }else{ 5 $replymessage = html_entity_decode($replymessage, ENT_QUOTES, 'UTF-8'); 6 } 7 $replymessage = str_replace("\r","",str_replace("<br />","", $replymessage)); 8 9 @mb_send_mail($formitem['email'], REPSUBJECT, $replymessage, $replyheader); 10 } 11 12 if(is_admin()) zeromail_data_put_csv($csv);//CSV保存 13 14 session_destroy(); 15 16 if(NOSCRIPT === false){ 17 18 print $endMassage; 19 20 }else{ 21 header('Location: '.SUCCESSPAGE); 22 }
回答1件
あなたの回答
tips
プレビュー