2011-01-11 67 views

回答

4

如果您是管理員,則在管理>參數下。

+0

以管理員身份登錄後更改urlbase參數 – 2011-12-12 14:09:36

-1

它在Ubuntu 9.04中不能很好地工作,它仍然不在Ubuntu 10.10中。

  1. 變化/usr/share/perl5/Bugzilla/Constants.pm

    $ overwritten_locations { 'debian_webpath'} = '/ your_url_prefix_here /' 下面的行;

  2. /etc/apache2/conf.d/bugzilla3.conf 別名/ your_url_prefix_here的/ usr /共享/ bugzilla3 /網絡

  3. 須藤VI的/ etc/bugzilla3/PARAMS 'urlbase'=>「HTTP ://your_domain.tld/your_url_prefix/」

也許你也將需要調整的/ usr /共享/ bugzilla3 /於Debian/PARAMS (同上述項目#3)

好運! ;)

1

最近在Ubuntu 10.04LTS

安裝bugzilla3而不是編輯/usr/share/perl5/Bugzilla/Constants.pm文件同樣的問題,我看到的是,如果變量debian_webpath被設置爲環境變量X_BUGZILLA_WEBPATH的價值。 如果未設置,則默認爲/bugzilla3/

確保mod_env在您的apache設置(a2enmod env)中啓用。

然後在我的Apache配置文件(/etc/apache/hosts-available/default),我說行

<VirtualHost *:80> 
    ... 
     SetEnv X_BUGZILLA_WEBPATH /bugzilla/ 
    ... 
</VirtualHost> 

中的Bugzilla也記錄並設置urlbase在部分:管理>參數。

urlbase = http://my-server-name/bugzilla/ 
相關問題