如何解决“禁止:您没有权限(对于Bugzilla)”?

免责声明:我已经阅读了这个论坛上的大部分文章(我知道其中有很多)。 由于这里列出的修复程序都不能帮助我,所以我想问一个新的问题。

系统:

我在ubuntu 12.10服务器版中安装了bitnami lampstack。 我有testlink模块isnatlled在它。

我正试图在这个lampstack(不是默认的)上面安装bugzilla,我将在稍后与testlink进行整合。 我已经成功地安装了bugzilla及其所有的依赖关系。 但是,当我尝试访问该网站使用的URL我得到“禁止

您无权访问此服务器上的/ bugzilla /。“错误。

我正在使用基本的结构文件夹: – apps / myapp | – htdocs | – conf

我做了以下。

  • 在“/opt/lampstack-5.4.11-1/apps/bugzilla/conf/bugzilla.conf”中包含了以下几行:

别名/ bugzilla /“/opt/lampstack-5.4.11-1/apps/bugzilla/htdocs/”

别名/ bugzilla“/opt/lampstack-5.4.11-1/apps/bugzilla/htdocs”

Options +MultiViews AllowOverride All <IfVersion < 2.3 > Order allow,deny Allow from all </IfVersion> <IfVersion >= 2.3> Require all granted </IfVersion> </Directory> 
  • 我在“/opt/lampstack-5.4.11-1/apache2/conf/httpd.conf”中添加了以下内容

包含“/opt/lampstack-5.4.11-1/apps/bugzilla/conf/bugzilla.conf”

然后我虔诚地重新启动服务器。 而且我仍然得到了禁止的错误。 我已经尝试几乎所有我能find的修复。

任何人都可以告诉我我在这里做错了吗?