我在个人服务器上安装并配置了git,gitolite和gitweb,它在开始时工作正常,我在我的存储库上有我的Web视图。但当我尝试安装BugZilla(all perl dependencies)时,我的gitweb网址出现了错误消息:
XML Parsing Error: XML or text declaration not at start of entity Location: http://xxx.xxx.xx.xx/gitweb/ Line Number 22, Column 1:
生成的网页(萤火虫):
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
<!-- git web interface version 1.7.10.4, (C) 2005-2006, Kay Sievers <kay.sievers@vrfy.org>, Christian Gierke -->
<!-- git core binaries version 1.7.10.4 -->
<head>
<meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8"/>
<meta name="generator" content="gitweb/1.7.10.4 git/1.7.10.4"/>
<meta name="robots" content="index, nofollow"/>
<title>xxx.xxx.xx.xx Git</title>
<link rel="stylesheet" type="text/css" href="static/gitweb.css"/>
<link rel="alternate" title="xxx.xxx.xx.xx Git projects list" href="/gitweb/?a=project_index" type="text/plain; charset=utf-8" />
<link rel="alternate" title="xxx.xxx.xx.xx Git projects feeds" href="/gitweb/?a=opml" type="text/x-opml" />
<link rel="shortcut icon" href="static/git-favicon.png" type="image/png" />
</head>
<body>
<div class="page_header">
<a href="http://git-scm.com/" title="git homepage"><img alt="git" class="logo" height="27" src="static/git-logo.png" width="72" /></a><a href="/gitweb/">projects</a> / </div>
<div class="projsearch">
Content-type: text/html
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
<!-- git web interface version 1.7.10.4, (C) 2005-2006, Kay Sievers <kay.sievers@vrfy.org>, Christian Gierke -->
<!-- git core binaries version 1.7.10.4 -->
<head>
<meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8"/>
<meta name="generator" content="gitweb/1.7.10.4 git/1.7.10.4"/>
<meta name="robots" content="index, nofollow"/>
<title>xxx.xxx.xx.xx Git</title>
<link rel="stylesheet" type="text/css" href="static/gitweb.css"/>
<link rel="shortcut icon" href="static/git-favicon.png" type="image/png" />
</head>
<body>
<div class="page_header">
<a href="http://git-scm.com/" title="git homepage"><img alt="git" class="logo" height="27" src="static/git-logo.png" width="72" /></a><a href="/gitweb/">projects</a> / </div>
<div class="page_body">
<br /><br />
500 - Internal Server Error
<br />
<hr />
Can't locate object method "startform" via package "CGI" at /usr/share/gitweb/index.cgi line 5267.
</div>
<div class="page_footer">
<a class="rss_logo" href="/gitweb/?a=opml">OPML</a> <a class="rss_logo" href="/gitweb/?a=project_index">TXT</a>
</div>
<script type="text/javascript" src="static/gitweb.js"></script>
<script type="text/javascript">
window.onload = function () {
var tz_cookie = { name: 'gitweb_tz', expires: 14, path: '/' };
onloadTZSetup('local', tz_cookie, 'datetime');
};
</script>
</body>
</html>
我认为这个错误是由于我在尝试安装BugZilla时安装了perl模块。
如何卸载所有perl模块并重新安装默认模块?
我使用Apache作为Web服务器。
有没有人知道如何解决这个问题?
UPDATE1:
我的perl版本是:v5.14.2
CGI版本:4.21
答案 0 :(得分:2)
升级到16.04后,在Ubuntu上使用apache的gitweb会出现相同的错误消息。正如Slion所说,在gitweb.cgi中将“startform”的两个实例更改为“start_form”,我可以像以前一样使用gitweb。
答案 1 :(得分:1)
就我而言,下面的命令在Arch Linux上就像一个超级按钮。
$ sudo pacman -Rs perl-cgi #uninstalls
$ sudo pacman -S perl #updates to the latest version
$ sudo pacman -S perl-cgi #installs
(您可能认为这与sudo pacman -S perl-cgi
相同,但就我而言,perl-cgi
已经是最新版本。尽管也许只是升级perl
即可,但是上面的命令是我还是做了。)
之所以找到此解决方案,是因为在主台式计算机(带有perl 5.30.2
)上进行了简单测试后,服务器上出现了错误(出现perl 5.30.3
)。
答案 2 :(得分:0)
在Windows上使用ActivePerl或Strawberry 5.22我遇到了同样的错误。安装CGI模块并替换&#34; startform&#34; gitweb.cgi中的实例使用&#34; start_form&#34;解决了这个问题。
但是由于某些原因,我仍然无法让gitweb列出我的项目。 Git版本是1.9.5。