X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fdocs%2Finstall.html;h=78172e8e47bd52accab486a6a011b89b80c05f24;hb=c509ea790c3d0631a0e1f79527ec937e419e380e;hp=39d3abb2db8a96639119ea59dd1ce243f6107ee2;hpb=673b9a458d9138523026963df6fa3b4683e09bae;p=freeside.git diff --git a/httemplate/docs/install.html b/httemplate/docs/install.html index 39d3abb2d..78172e8e4 100644 --- a/httemplate/docs/install.html +++ b/httemplate/docs/install.html @@ -21,6 +21,7 @@ Before installing, you need: MySQL's default MyISAM and ISAM table types are not supported. You must use one of the new transaction-safe table types such as InnoDB. Set it as the default table type using the --default-table-type=InnoDB mysqld command-line option or by setting default-table-type=InnoDB in the my.cnf option file. --> + 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) @@ -121,15 +124,7 @@ $ su
  • Run a separate iteration of Apache[-SSL] with mod_perl enabled as the freeside user.
  • Edit the Makefile and set TEMPLATE to asp or mason. Also set FREESIDE_DOCUMENT_ROOT.
  • Run make install-docs. - - - - - - - - - - - - -
    Mason (recommended)Apache::ASP (deprecated)
      -
    • Configure Apache: +
    • Configure Apache:
       PerlModule HTML::Mason
       # your freeside docuemnt root
      @@ -143,33 +138,6 @@ require "/usr/local/etc/freeside/handler.pl";
       </Perl>
       </Directory>
       
      -
      -
    • Configure Apache: -
      -PerlModule Apache::ASP
      -# your freeside document root
      -<Directory /var/www/freeside>
      -<Files ~ (\.cgi|\.html)>
      -AddHandler perl-script .cgi .html
      -PerlHandler Apache::ASP
      -</Files>
      -<Perl>
      -$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>
      -
      -
    -