X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fdocs%2Finstall.html;h=df353eb9dff7f113f38cde4de273f40615e5a585;hb=7209026857ada1ec716c728ae966f0fc986b180e;hp=5f2ca4ca6bc389e4f720834f532ad8ae858b52c3;hpb=84d15a339737bd783b764c7f0d371084c2158ce7;p=freeside.git diff --git a/httemplate/docs/install.html b/httemplate/docs/install.html index 5f2ca4ca6..df353eb9d 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 @@ -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";