|
|
1
3
对于在PerlMonks上给出错误消息的Perl脚本,有很多很好的故障排除建议: start here . 我在您的脚本中没有看到任何特定的错误,而且看起来您已经涵盖了文件权限,因此我将从Apache配置建议开始。 |
|
|
2
9
很多好建议: How can I troubleshoot my Perl CGI script 看到suexec错误消息后更新:看起来您的服务器需要CGI程序与目录属于同一个用户。尝试更改文件的所有权。 |
|
|
3
0
use CGI qw/:standard/;
$q = CGI->new;
print $q->header('text/html');
print "testing...\n";
|