Transfer Source Control Integration from Trial

If you integrated your source control system with a FogBugz trial and later decided to purchase FogBugz, it is easy to convert the source control integration to work with your new installation.  You will need to make a few modifications to the trial trigger script that you downloaded and have been using with your trial up until this point.

  1. Find the trigger script that you downloaded from your trial and moved into your source control directory.  The name of this script begins with "logBugData" and ends with either ".vbs" or ".pl".  For instance, if you use Subversion then you need to find your repository/hooks directory and locate logBugDataSVN.vbs or logBugdataSVN.pl. 
  2. Edit the script and change the IS_TRIAL parameter to 1.  For example, the VBScript version requires that you change the line:

    Dim IS_TRIAL : IS_TRIAL = 0

    to

    Dim IS_TRIAL : IS_TRIAL = 1

  3. If you recall, when you initially configured your source control integration, you were able to skip a step or two in the instructions because you were using our trial server.  Now that you're using your own FogBugz server, you need to edit the trigger script and set the BUGZ_SERVER, BUGZ_PORT, BUGZ_URL, and CVSSUBMIT variables appropriately.  For detailed instructions, refer back to the original instructions for setting up source control integration.

  4. Once you have updated these five settings (IS_TRIAL and the four variables from step 3), your source control system is configured to integrate with your newly purchased FogBugz installation.