From 24cf1de1156932c50a8d0d7bcab5f1fd163a35c0 Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 9 Mar 2005 08:18:57 +0000 Subject: [PATCH] preliminary RT docs --- ANNOUNCE.1.5 | 3 +- httemplate/docs/index.html | 1 + httemplate/docs/install-rt.html | 66 +++++++++++++++++++++++++++++++++++++++++ httemplate/docs/install.html | 31 ++++++++++--------- 4 files changed, 86 insertions(+), 15 deletions(-) create mode 100644 httemplate/docs/install-rt.html diff --git a/ANNOUNCE.1.5 b/ANNOUNCE.1.5 index c8143a80c..0be1a930a 100644 --- a/ANNOUNCE.1.5 +++ b/ANNOUNCE.1.5 @@ -25,7 +25,8 @@ - historical late notice viewing in web interface - VoIP billing for CDRs from RADIUS - promotional codes for signup -- lots of RT integration, integrated RT upgraded to 3.2.2 +- lots of RT integration, integrated RT upgraded to 3.2.2, preliminary RT + add-on docs - one-time referral credits - invoices now use history records (don't lose details) - option to credit for remaining service upon package cancel/change diff --git a/httemplate/docs/index.html b/httemplate/docs/index.html index d0151edeb..4a58441f7 100644 --- a/httemplate/docs/index.html +++ b/httemplate/docs/index.html @@ -7,6 +7,7 @@

Installation and upgrades

- + + + +
Apache::ASPMasonMason (recommended)Apache::ASP (deprecated)
  • Configure Apache:
    -PerlModule Apache::ASP
    -# your freeside document root
    +PerlModule HTML::Mason
    +# your freeside docuemnt root
     <Directory /var/www/freeside>
     <Files ~ (\.cgi|\.html)>
     AddHandler perl-script .cgi .html
    -PerlHandler Apache::ASP
    +PerlHandler HTML::Mason
     </Files>
     <Perl>
    -$MLDBM::RemoveTaint = 1;
    +require "/usr/local/etc/freeside/handler.pl";
     </Perl>
    -PerlSetVar Global /usr/local/etc/freeside/asp-global/
    -PerlSetVar Debug 2
    -PerlSetVar RequestBinaryRead Off
    -# your freeside document root
    -PerlSetVar IncludesDir /var/www/freeside
     </Directory>
     
  • Configure Apache:
    -PerlModule HTML::Mason
    -# your freeside docuemnt root
    +PerlModule Apache::ASP
    +# your freeside document root
     <Directory /var/www/freeside>
     <Files ~ (\.cgi|\.html)>
     AddHandler perl-script .cgi .html
    -PerlHandler HTML::Mason
    +PerlHandler Apache::ASP
     </Files>
     <Perl>
    -require "/usr/local/etc/freeside/handler.pl";
    +$MLDBM::RemoveTaint = 1;
     </Perl>
    +PerlSetVar Global /usr/local/etc/freeside/asp-global/
    +PerlSetVar Debug 2
    +PerlSetVar RequestBinaryRead Off
    +# your freeside document root
    +PerlSetVar IncludesDir /var/www/freeside
     </Directory>