[求助]在 rh as2.1中 装了mod_perl , 怎么cgi 仍旧不运行?
Perl安装如下:
配置编译并安装 mod_perl
cd /usr/local/src/mod_perl-1.26
perl Makefile.PL \
APACHE_SRC=../apache_1.3.24/src \
DO_HTTPD=1 \
USE_APACI=1 \
PRE_HTTPD=1 \
EVERYTHING=1
然后编译
make
接着测试编译结果
make test
安装
make install
=========
然后安装apache
装完后,apache 设置了cgi-bin路径
但是运行 cgi文件仍旧不行, 是不是装上perl, 还要另外的设置??
http.conf 部分配置:
ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"
<Directory "/var/www/cgi-bin">;
AllowOverride All
Options ExecCGI
Order allow,deny
Allow from all
</Directory>;
在其他机器ie里访问
http://172.16.19.232/cg-bin/bbs/install.cgi
错误信息:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, root@zerocold 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.27 Server at 127.0.0.1 Port 80
errlog:
[Thu Jul 10 19:55:06 2003] [error] (2)No such file or directory: exec of /var/ww
w/cgi-bin/bbs/install.cgi failed
[Thu Jul 10 19:55:07 2003] [error] [client 172.16.48.22] Premature end of script
headers: /var/www/cgi-bin/bbs/install.cgi
但是/var/www/cgi-bin/bbs/install.cgi 肯定是存在的
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
怎么没人帮忙
现在是 测试文件可以访问
domain/cgi-bin/bbs/printenv.cgi
但是
访问 http://domain/cgi-bin/bbs/install.cgi
就是报500错误