fedoraにcgiでディレクトリとcgiを作成してテストするとInternal Server Errorが発生する
このQ&Aのポイント
fedoraでディレクトリを作成し、cgiスクリプトを作成してテストするとInternal Server Errorが発生します。
cgiスクリプトの設定が正しくない可能性があります。設定を見直し、再度テストしてみてください。
Internal Server Errorが発生した場合、サーバーの管理者に連絡し、エラーが発生した時間や行った操作を報告してください。
fedoraにcgi
mkdir でディレクトリを作って
vi who cgiを作って
内容は
#!/usr/bin/perl
print "Content-type: text/html\n\n";
print "<html><body>\n";
print "<pre>";
print 'whoami';
print "</pre>";
print "</body></html>";
なのですが、
ブラウザでテストすると
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, ****@hotmail.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Apache/1.3.29 Server at test.modena.com Port 81
Please contact the server administrator, ****@hotmail.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Apache/1.3.29 Server at test.modena.com Port 81
という風に表示されます。
設定が違っているのでしょうか?
補足
アドバイスありがとうございます。 >whoamiが実行できないのでは? 確かに出来ていません。 >フルパス指定するか,コメントアウトするか,試してみて下さい。 具体的にどこをどうすればいいでしょうか? 素人で申し訳ありません。