Parameters.Had the same problem recently installing bugzil" />
开发者

Bugzilla change the url in link in email

开发者 https://www.devze.com 2023-02-04 15:23 出处:网络
How can i change the value of \"开发者_如何学Curlbase\" param globally in bugzilla ?If you are an administrator, it\'s under Administration > Parameters.Had the same problem recently installing bugzil

How can i change the value of "开发者_如何学Curlbase" param globally in bugzilla ?


If you are an administrator, it's under Administration > Parameters.


Had the same problem recently installing bugzilla3 on Ubuntu 10.04LTS

Rather than edit the /usr/share/perl5/Bugzilla/Constants.pm file, I saw that if the variable debian_webpath is set to the value of the environment variable X_BUGZILLA_WEBPATH. If not set, then it defaults to /bugzilla3/ .

Make sure that mod_env is enabled in your apache setup (a2enmod env).

Then in my apache configuration file (/etc/apache/hosts-available/default), I added lines

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

Also logged in to bugzilla and set the urlbase in the section: Administration > Parameters.

urlbase = http://my-server-name/bugzilla/


It didn't work well in Ubuntu 9.04, it still doesn't in Ubuntu 10.10.

  1. Change the following line in /usr/share/perl5/Bugzilla/Constants.pm

    $overwritten_locations{'debian_webpath'} = '/your_url_prefix_here/';

  2. /etc/apache2/conf.d/bugzilla3.conf Alias /your_url_prefix_here /usr/share/bugzilla3/web

  3. sudo vi /etc/bugzilla3/params 'urlbase' => 'http://your_domain.tld/your_url_prefix/'

maybe also you'll need to adjust /usr/share/bugzilla3/debian/params (same as item #3 above)

Good luck! ;)

0

精彩评论

暂无评论...
验证码 换一张
取 消