Freeside:1.7:Documentation:RT Installation

From Freeside
Revision as of 02:32, 21 August 2006 by Ivan (talk | contribs) (RT install instructions)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Introduction

Integrated ticketing is an new feature and these instructions are preliminary. Documentation contributions are welcome.

There is also support for running this integration against an external RT installation, but it is not (yet) documented.

Prerequisites

Installation

  • Create a new Unix group called 'rt'
  • Edit the top-level Makefile, set RT_ENABLED to 1 and set the RT_DOMAIN, RT_TIMEZONE, and FREESIDE_URL variables.
  • make configure-rt
make create-rt make install-rt
  • Add the following to your httpd.conf:
  1. replace /var/www/freeside with your freeside document root

<Directory /var/www/freeside/rt/NoAuth> <Limit GET POST> allow from all Satisfy any SetHandler perl-script PerlHandler HTML::Mason </Limit> </Directory>

  1. replace /var/www/freeside with your freeside document root

<Directory /var/www/freeside/rt/REST/1.0/NoAuth> <Limit GET POST> allow from all Satisfy any SetHandler perl-script PerlHandler HTML::Mason </Limit> </Directory>

  1. replace /var/www/freeside with your freeside document root

<DirectoryMatch "^%/var/www/freeside/rt/.*NoAuth/images"> SetHandler None </DirectoryMatch>

  1. replace /var/www/freeside with your freeside document root

<Directory /var/www/freeside/rt/Ticket/Attachment> SetHandler perl-script PerlHandler HTML::Mason </Directory>

  1. replace /var/www/freeside with your freeside document root

<Directory /var/www/freeside/rt/Search> SetHandler perl-script PerlHandler HTML::Mason </Directory>

  • Set the ticket_system configuration value to RT_Internal. (You may also wish to set ticket_system-default_queueid once you have RT configured.)
  • Bootstrap RT's permissions:
    • Click on "Ticketing Main" on the Freeside main menu to auto-create an RT login for your username
    • Go to Configuration | Employees | View/Edit employees and add a temporary root user.
    • Log into your Freeside installation as the "root" user you just created, by closing all of your browser windows, or by using https://root@yourmachone/freeside/ syntax if your browser supports it.
    • Click on "Ticketing Main" on the Freeside main menu. Click on "Configuration", then "Global", and then "User Rights". Grant the "SuperUser" right to your RT login.
    • Disable the temporary "root" user.