linux:在apache中运行cgi-bin模块时获取错误500,而不是从ssh运行

时间:2013-07-22 09:41:27

标签: linux apache cgi cgi-bin

当我在ssh中登录并运行我的cgi时:一切似乎都没问题

./modulev2.cgi 
Content-type: text/html
Cache-Control: no-cache, no-store
Pragma: no-cache

当我尝试通过http:http://www.capuccino.fr/cgi-bin/modulev2.cgi调用它时 我讨厌了:

Internal Server Error

我试图将chmod777放在家里等cgi-bin上但没有成功

查看日志时: cgi.log:

[2013-07-22 11:21:12]: uid: (1000/capuccin) gid: (100/users) cmd: modulev2.cgi
[2013-07-22 11:21:12]: target uid/gid (1000/100) mismatch with directory (510/100) or program (0/0)

和error_log

[Mon Jul 22 11:21:03 2013] [error] [client 91.7.112.187] suexec policy violation: see suexec log for more details
[Mon Jul 22 11:21:03 2013] [error] [client 91.7.112.187] Premature end of script headers: modulev2.cgi

我也试图改变chown并在cgi.log中得到这个

[2013-07-22 11:56:36]: target uid/gid (1000/100) mismatch with directory (510/100) or program (1000/100)
[2013-07-22 11:56:39]: uid: (1000/capuccin) gid: (100/users) cmd: modulev2.cgi

关于如何解决这个问题的想法?

1 个答案:

答案 0 :(得分:1)

似乎错误的文件/文件夹权限。

尝试设置 775 的权限,并确保文件和文件夹的所有者是正确的。将所有者设置为您的网络服务器(例如 www-data apache )。