X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fdocs%2Finstall.html;h=d4507a2a5dae86dac886dd5b37a21678f2b4d898;hb=efccaa2d081bfcaaddcf9d89da3c2a065b4caafb;hp=41aacc51b15b72d91613ff6776b0443d47293fa9;hpb=a5651d5945c790b0d3fee0cd5082269a21adc6ee;p=freeside.git diff --git a/httemplate/docs/install.html b/httemplate/docs/install.html index 41aacc51b..d4507a2a5 100644 --- a/httemplate/docs/install.html +++ b/httemplate/docs/install.html @@ -48,7 +48,7 @@ Before installing, you need:
  • Net-SSH
  • String-ShellQuote
  • Net-SCP -
  • Apache::ASP or HTML::Mason +
  • HTML::Mason (recommended, enables full functionality) or Apache::ASP (deprecated, integrated RT ticketing will not be available)
  • Tie-IxHash
  • Time-Duration
  • HTML-Widgets-SelectLayers @@ -128,13 +128,13 @@ chown freeside /usr/local/etc/freeside/asp-global/
     cp htetc/global.asa /usr/local/etc/freeside/asp-global/global.asa
     
    -
  • Configure Apache for the Global directory and to execute .cgi files using Apache::ASP. For example: +
  • Configure Apache for the Global directory and to execute .cgi files using Apache::ASP. For example, add something like the following to your Apache httpd.conf file, adjusting for your actual paths:
     PerlModule Apache::ASP
     # your freeside document root
     <Directory /usr/local/apache/htdocs/freeside-asp>
     <Files ~ (\.cgi|\.html)>
    -SetHandler perl-script
    +AddHandler perl-script .cgi .html
     PerlHandler Apache::ASP
     </Files>
     <Perl>
    @@ -158,12 +158,12 @@ PerlSetVar IncludesDir /usr/local/apache/htdocs/freeside-asp
             
  • set an appropriate data_dir, such as /usr/local/etc/freeside/masondata -
  • Configure Apache to use the handler.pl file and to execute .cgi files using HTML::Mason. For example: +
  • Configure Apache to use the handler.pl file and to execute .cgi files using HTML::Mason. For example, add something like the following to your Apache httpd.conf file, adjusting for your actual paths:
     PerlModule HTML::Mason
     <Directory /usr/local/apache/htdocs/freeside-mason>
    -<Files ~ (\.cgi|.html)>
    -SetHandler perl-script
    +<Files ~ (\.cgi|\.html)>
    +AddHandler perl-script .cgi .html
     PerlHandler HTML::Mason
     </Files>
     <Perl>
    @@ -175,7 +175,7 @@ require "/usr/local/etc/freeside/handler.pl";