Ubuntu 中的 Bugzilla Testopia 安装

发布于 2024-12-03 11:34:28 字数 280 浏览 1 评论 0原文

我已经在 ubuntu 上安装了 bugzilla 和 testopia,但无法打开 bugzilla GUI。

运行 ./checksetup.pl 后,我收到的消息是

“”现在您已经安装了 Bugzilla,您应该访问“参数”页面(链接在管理员帐户的页脚中)以确保它按照您的意愿进行设置 - 这包括将“urlbase”选项设置为正确的 URL。""

当我尝试从浏览器打开它时,我得到了编码页,但没有看到 bugzilla 的 GUI。

请帮忙。

问候, 鲁奇

I have installed bugzilla and testopia on ubuntu but i am not able to open bugzilla GUI.

After running ./checksetup.pl the message i get is

""Now that you have installed Bugzilla, you should visit the 'Parameters'page (linked in the footer of the Administrator account) to ensure it is set upas you wish - this includes setting the 'urlbase'option to the correct URL.""

When i try to open it from browser ,i get the coding page but not the GUI of bugzilla.

Please help.

Regards,
Ruchi

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦行七里 2024-12-10 11:34:28

您必须修复您的网络服务器设置,

如果您使用 Apache2,请将以下设置添加到 /etc/apache2/httpd.conf 文件中,默认情况下它是一个空文件。

Alias /bugzilla/ /var/www/bugzilla/
<Directory /var/www/bugzilla>
    AddHandler cgi-script .cgi .pl
    Options +Indexes +ExecCGI +FollowSymLinks
    DirectoryIndex index.cgi
    AllowOverride Limit
</Directory>

不要忘记保存配置!

ctrl + o

然后退出:

ctrl + x

最后重新启动 Apache2 Web 服务器

sudo /etc/init.d/apache2 restart

现在应该可以工作了:)

You have to fix your webserver settings,

If you use Apache2, add the following settings to the /etc/apache2/httpd.conf file, by default it is an empty file.

Alias /bugzilla/ /var/www/bugzilla/
<Directory /var/www/bugzilla>
    AddHandler cgi-script .cgi .pl
    Options +Indexes +ExecCGI +FollowSymLinks
    DirectoryIndex index.cgi
    AllowOverride Limit
</Directory>

Dont forget to save the configuration!

ctrl + o

Then exit:

ctrl + x

Finaly restart the Apache2 webserver

sudo /etc/init.d/apache2 restart

It should work now :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文