Diff for "Bugs/BugzillaPlugin"

Not logged in - Log In / Register

Differences between revisions 1 and 2
Revision 1 as of 2008-08-19 23:04:00
Size: 1732
Editor: i-83-67-5-113
Comment:
Revision 2 as of 2008-08-20 00:06:50
Size: 1990
Editor: i-83-67-5-113
Comment:
Deletions are marked like this. Additions are marked like this.
Line 6: Line 6:
<<Anchor(versioning)>>
Line 18: Line 19:
So, a plugin instance with a version number of `0.9-3.2` means that the plugin is version 0.9, compatible with Bugzilla version 3.2.   So, a plugin instance with a version number of `0.9-3.2` means that the plugin is version 0.9, compatible with Bugzilla version 3.2.


== Getting the plugin ==

You can download the plugin from it's [[https://edge.launchpad.net/bugzilla-launchpad/+download|Launchpad project page]]. Make sure you get the right plugin [[#versioning|for your version]] of Bugzilla.

Installing the Launchpad plugin for Bugzilla

The bugzilla-launchpad project is a Bugzilla extension that allows Bugzilla and Launchpad to interact.

A note on version numbering

The version number of the plugin shows two things:

<plugin version>-<bugzilla version>

<plugin version> is the version of the plugin.

<bugzilla version> is the version of Bugzilla that the plugin is compatible with.

So, a plugin instance with a version number of 0.9-3.2 means that the plugin is version 0.9, compatible with Bugzilla version 3.2.

Getting the plugin

You can download the plugin from it's Launchpad project page. Make sure you get the right plugin for your version of Bugzilla.

Installation

(Wherever it says <version> in these instructions, we mean "the plugin version number goes here".)

1. Untar the package:

  tar -xzf bugzilla-launchpad-<version>.tar.gz

2. Change to your Bugzilla directory:

  cd /path/to/bugzilla

(That's probably /var/www/html/bugzilla if you followed the standard Bugzilla installation instructions.)

2. Apply the patch to your Bugzilla installation:

  patch -p0 -i /path/to/bugzilla-launchpad-<version>/patch.diff

Don't worry, the patch was written and reviewed by the Bugzilla developers themselves, so it's safe to apply.

If you're running Red Hat or an older Fedora, you might have to fix the SELinux permissions on the files after applying the patch:

  /sbin/restorecon -Rv ./

3. Install the extension:

  mv /path/to/bugzilla-launchpad-<version>/launchpad extensions/

4. Run checksetup.pl to install the plugin:

  ./checksetup.pl

5. checksetup.pl will direct you to a URL to finish the installation.

And now the plugin should be working!

Bugs/BugzillaPlugin (last edited 2010-11-11 19:43:45 by 122-63-10-108)