The Network People Support Forums

Mail::Toaster => Installation Issues => Topic started by: pcott on August 05, 2004, 09:53:20 AM

Title: RT (Request tracker) HELP!
Post by: pcott on August 05, 2004, 09:53:20 AM
Has anyone here managed to get RT3 (Request tracker) running from the port with the toaster? It just blows up when we try to install it..
Title: Re: RT (Request tracker) HELP!
Post by: mchallis on December 14, 2004, 11:50:59 AM
I know this is an old posting. No one followed up. The only problem I had when attempting to install RT and toaster on the same install was RT's default to mod-perl broke some web admin stuff in toaster. I think you could get around that by installing Apache twice (different ports) once for toaster and once for RT or by using fastcgi. I plan to try this again in the near future.
Title: Re: RT (Request tracker) HELP!
Post by: matt on December 14, 2004, 03:23:46 PM
I haven't every tried it, but in looking at the RT3 port's Makefile, it looks like it's just a matter of setting -DWITH_APACHE2 when you build it, assuming you're using the default of install_apache = 1.

Matt

<snipped from ports/www/rt3/Makefile>
.if defined(WITH_APACHE2)
BUILD_DEPENDS+=  ${LOCALBASE}/libexec/apache2/mod_perl.so:${PORTSDIR}/www/mod _perl2
DEPENDS_ARGS+=  WITHOUT_MODPERL=yes
DEPENDS_ARGS+=  WITH_MODPERL2=yes
.else
BUILD_DEPENDS+=  ${LOCALBASE}/libexec/apache/libperl.so:${PORTSDIR}/www/mod_p erl
.endif
</snip>