X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fdocs%2Finstall.html;h=d89ea3f04e1bddbebd20d40c60a6cc2bdba62726;hb=76161f1a2ae0f96470bed4089b00eff5abb16cff;hp=86e2a6b8c765cd8dfbe9574d247e3d88f23b7c02;hpb=3485c34d9374892c3e4d6a56c7dd5f47f480f024;p=freeside.git diff --git a/httemplate/docs/install.html b/httemplate/docs/install.html index 86e2a6b8c..d89ea3f04 100644 --- a/httemplate/docs/install.html +++ b/httemplate/docs/install.html @@ -14,51 +14,63 @@ Before installing, you need:
  • Optional, enables typeset invoices: teTeX and Ghostscript (included with most distributions).
  • A transactional database engine supported by Perl's DBI.
  • Perl modules (CPAN will query, download and build perl modules automatically) Install the Freeside distribution: @@ -112,46 +124,49 @@ $ su - + + + +
    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>