[ このメッセージへの返事 ]
[ 返事を書く ]
[ home.html ]
投稿者:
68user @ mamb.cs.gunma-u.ac.jp on 97/6/17 04:32:55
CGIを作ったんですけど、動きません。
.htaccessの内容
% cat ~/public_html/.htaccess
Options FollowSymLinks ExecCGI Includes
AddType text/x-server-parsed-html .html
AddType text/x-server-parsed-html .htm
AddType application/x-httpd-cgi .cgi
AddType audio/x-pn-realaudio .ra
Options FollowSymLinks ExecCGI Includes
http://www.cs.gunma-u.ac.jp/~j5306050/index.htmlの内容
% cat ~/public_html/index.html
<html>
<a href="http://www.cs.gunma-u.ac.jp/~j5306050/cgi-bin/cgi.cgi">CGI sample</a>
</html>
perlのフルパス
% which perl
/usr/local/bin/perl
CGIの内容
% cat ~/public_html/cgi-bin/cgi.cgi
#!/usr/local/bin/perl
print "Content-type: text/plain\n\n";
print "Hello,world\n";
CGIのパーミッション
% ls -l ~/public_html/cgi-bin/cgi.cgi
-rwxr-xr-x 1 j5306050 joho 84 Jun 17 04:00 cgi-bin/cgi.cgi
としました。しかしリンクをクリックすると、
#!/usr/local/bin/perl
print "Content-type: text/html\n\n";
print "Hello,world\n";
とそのまま表示されてしまいます。
なにが足らないんでしょうか? なんかもうお手上げ状態です。
助けて下さい。
|