X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fdocs%2Finstall.html;h=0e3ed364b9e80ddd2253b162cf5b515092230b1e;hb=ab7e1f9f9f86bc39c3e2a35f34b6f3ab54efb66b;hp=1632fb38d5fcb598c081358681a10b5bd1d9b1e3;hpb=d9649d434ba0955cd079d70e885b9f33f5ad85b5;p=freeside.git diff --git a/httemplate/docs/install.html b/httemplate/docs/install.html index 1632fb38d..0e3ed364b 100644 --- a/httemplate/docs/install.html +++ b/httemplate/docs/install.html @@ -14,56 +14,64 @@ Before installing, you need:
  • Optional, enables typeset invoices: teTeX and Ghostscript (included with most distributions).
  • A transactional database engine supported by Perl's DBI. + Note: the above only applies to the database used by the Freeside software itself. Freeside can integrate with RADIUS and other servers running MySQL or any other DBI-supported database.
  • Perl modules (CPAN will query, download and build perl modules automatically) Install the Freeside distribution: @@ -117,46 +125,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>