X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fdocs%2Finstall.html;h=10c51e77dba782edd77dac34323b23795cb01cf7;hb=6f76f84db8de0e02253dfd551ae254c48855d3f6;hp=51c700bf8c94c09cf74ce5790233701084e7fb5f;hpb=fc9e97f6cab72de473288470c0681534caf25ea5;p=freeside.git diff --git a/httemplate/docs/install.html b/httemplate/docs/install.html index 51c700bf8..10c51e77d 100644 --- a/httemplate/docs/install.html +++ b/httemplate/docs/install.html @@ -14,53 +14,62 @@ 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: @@ -114,46 +123,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>