X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fdocs%2Finstall.html;h=d4507a2a5dae86dac886dd5b37a21678f2b4d898;hp=ed306f2d38b09ac5e83d33f5e803ad4c904970f8;hb=5d154e4e153a66c2349ee0c6ca942fa017bfb139;hpb=eb9668a6f3181ee02cb335272c5ee4616e61fd09 diff --git a/httemplate/docs/install.html b/httemplate/docs/install.html index ed306f2d3..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 @@ -56,6 +56,7 @@ Before installing, you need:
  • NetAddr-IP
  • Chart +
  • Crypt::PasswdMD5
  • Apache::DBI (optional but recommended for better webinterface performance) @@ -127,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>
    @@ -141,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>
     
    @@ -154,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>
    @@ -171,7 +175,7 @@ require "/usr/local/etc/freeside/handler.pl";