X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fdocs%2Finstall.html;h=d4507a2a5dae86dac886dd5b37a21678f2b4d898;hb=efccaa2d081bfcaaddcf9d89da3c2a065b4caafb;hp=0217c9085553f88678f4883a8493c35cd11e405d;hpb=72a65ceaa28155e8c1c3c1328dd76587b35e089a;p=freeside.git diff --git a/httemplate/docs/install.html b/httemplate/docs/install.html index 0217c9085..d4507a2a5 100644 --- a/httemplate/docs/install.html +++ b/httemplate/docs/install.html @@ -30,7 +30,7 @@ Before installing, you need:
  • HTML-Parser
  • libnet
  • Locale-Codes -
  • Net-Whois +
  • Net-Whois-Raw
  • libwww-perl
  • Business-CreditCard @@ -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,12 +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>
    @@ -142,6 +143,8 @@ $MLDBM::RemoveTaint = 1;
     PerlSetVar Global /usr/local/etc/freeside/asp-global/
     PerlSetVar Debug 2
     PerlSetVar RequestBinaryRead Off
    +# your freeside document root
    +PerlSetVar IncludesDir /usr/local/apache/htdocs/freeside-asp
     </Directory>
     
    @@ -155,12 +158,12 @@ PerlSetVar RequestBinaryRead Off
  • 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>
    @@ -172,7 +175,7 @@ require "/usr/local/etc/freeside/handler.pl";