1. ホーム
  2. php

[解決済み】500エラー。スクリプトヘッダの早期終了

2022-03-17 03:52:53

質問

下記のスクリプトを実行すると、"Premature end of script headers: contactform.cgi"というエラーメッセージが表示されます。 何が不満かというと、これを別のサーバーで.phpとして実行したところ、うまくいったのです。 しかし、私はサーバーを変更しなければならず、そのサーバーはCGI PHPしかサポートしていません。 しかし、それは動作しません。 コードが間違っているとは思いませんが、念のため見てみてください。

いろいろ読んでみましたが、パーミッションの問題だと言う人もいました。 私の場合はそうなのでしょうか?

"display_errors" と "error_reporting" の記述でエラーログにエラーを表示することは知っていますが、サーバーにアクセスできない場合、どのようにログを確認すればいいのでしょうか?

#!/usr/local/bin/php

<?php

print "Content-type: text/html\n\n";
use CGI::Carp qw(fatalsToBrowser);
ini_set('display_errors',1);
error_reporting(E_ALL);

if(isset($_POST['email'])) {

//Email this form to me
$email_to = "[email protected]";

function died($error) {
    // your error code can go here
    echo "Oops... something's wrong. ";
    echo "Fix the error(s) below:<br /><br />";
    echo $error."<br /><br />";
    die();
}


// validation expected data exists
if(!isset($_POST['first_name']) ||
    !isset($_POST['last_name']) ||
    !isset($_POST['email']) ||
    !isset($_POST['subject']) ||
    !isset($_POST['comments'])) {
    died('There appears to be a problem with the form you submitted.');       
}


$first_name = $_POST['first_name']; // required
$last_name = $_POST['last_name']; // required
$email_from = $_POST['email']; // required
$subject = $_POST['subject']; // not required
$comments = $_POST['comments']; // required

$error_message = "";
$email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
if(!preg_match($email_exp,$email_from)) {
$error_message .= 'The Email Address you entered does not appear to be valid.<br />';
}
$string_exp = "/^[A-Za-z .'-]+$/";
if(!preg_match($string_exp,$first_name)) {
$error_message .= 'The First Name you entered does not appear to be valid.<br />';
}
if(!preg_match($string_exp,$last_name)) {
$error_message .= 'The Last Name you entered does not appear to be valid.<br />';
}
if(strlen($comments) < 2) {
$error_message .= 'The Comments you entered do not appear to be valid.<br />';
}
if(strlen($error_message) > 0) {
died($error_message);
}


$email_message = "Form details below.\n\n";

function clean_string($string) {
  $bad = array("content-type","bcc:","to:","cc:","href");
  return str_replace($bad,"",$string);
}

$email_message .= "First Name: ".clean_string($first_name)."\n";
$email_message .= "Last Name: ".clean_string($last_name)."\n";
$email_message .= "Email: ".clean_string($email_from)."\n";
$email_message .= "Subject: ".clean_string($subject)."\n";
$email_message .= "Comments: ".clean_string($comments)."\n";

//Email Subject (put here to include subject from form)
$email_subject = "SUBJECT | ".clean_string($subject)."";


// create email headers
$headers = 'From: '.$email_from."\r\n".
'Reply-To: '.$email_from."\r\n" .
'X-Mailer: PHP/' . phpversion();
@mail($email_to, $email_subject, $email_message, $headers);
?>

<!-- include your own success html here -->

<?php
header("Location: thankyou.html");
}
?>

解決方法は?

ファイルのパーミッションの問題でした。

私のウェブサイト上のすべてのファイルのパーミッションレベルは「644」に設定されていました。 一度、パーミッションレベルを705に変更したのですが、( chmod 705 ) すべてがうまくいきました。なお、私は705に変更しましたが、755でも動作します。また、そのフォルダを701に変更しました(隠すためですが、サーバーから実行可能です)。

余談ですが 私の.PHPファイルは、おそらく644に設定されていたのに、なぜ他のサーバーで動作したのか、未だに理解できません? なぜ、ワールドパーミッションなしでApacheがスクリプトを実行できたのでしょうか? Apacheはワールドパーミッションを必要としないのでしょうか? 私がまだ持っているいくつかの質問だけです...