我试着用cgi脚本来运行perlscript。但是,包含perl的cgi库不起作用:Can't locate CGI/Carp.pm in @INC (you may need to install the CGI::Carp module) (@INC contains: /etc/perl /usr/local/lib
我有以下最简单的Perl CGI脚本:use warnings;use CGI::Carp qw(fatalsToBrowser);
use Template/5.8.8 .) at /home/pistacchio/webapps/htdocs/cgi-bin/p.cgi line 8.BEGIN failed--compilation aborted at /home
我从一个名为update.html的html页面的表单操作中调用update.cgi。cgi负责更新服务器上的文件。但它无法更新,并且我在错误日志中得到如下错误:-
update.cgi: main::redirect1() called too early to check prototype at /opt/apache/html/cgi-bin/linux/update.cgi line
我是python cgi编程的新手。我已经在linux mint上安装了Apache2.2服务器,并且我在var/www文件夹中有我的html表单,它可以正常显示。表单的操作是我放在/usr/lib/ cgi -bin文件夹中的cgi脚本。但在提交时,它会显示“请求的URL /usr/lib/cgi-bin/file.cgi as not found on this server”。有人知道