From 160be29a0dc62e79a4fb95d2ab8c0c7e5996760e Mon Sep 17 00:00:00 2001 From: cvs2git Date: Mon, 12 Aug 2002 06:17:10 +0000 Subject: This commit was manufactured by cvs2svn to create branch 'BESTPRACTICAL'. --- httemplate/docs/upgrade8.html | 392 ------------------------------------------ 1 file changed, 392 deletions(-) delete mode 100644 httemplate/docs/upgrade8.html (limited to 'httemplate/docs/upgrade8.html') diff --git a/httemplate/docs/upgrade8.html b/httemplate/docs/upgrade8.html deleted file mode 100644 index 0210430ef..000000000 --- a/httemplate/docs/upgrade8.html +++ /dev/null @@ -1,392 +0,0 @@ - - Upgrading to 1.4.0 - - -

Upgrading to 1.4.0 from 1.3.1

- - - - - - - - - -
Apache::ASPMason
    -
  • Run make aspdocs -
  • Copy aspdocs/ to your web server's document space. -
  • Create a Global directory, such as /usr/local/etc/freeside/asp-global/ -
  • Copy htetc/global.asa to the Global directory. -
  • Configure Apache for the Global directory and to execute .cgi files using Apache::ASP. For example: -
    -<Directory /usr/local/apache/htdocs/freeside-asp>
    -<Files ~ (\.cgi)>
    -AddHandler perl-script .cgi
    -PerlHandler Apache::ASP
    -</Files>
    -<Perl>
    -$MLDBM::RemoveTaint = 1;
    -</Perl>
    -PerlSetVar Global /usr/local/etc/freeside/asp-global/
    -</Directory>
    -
    -
    -
  • (use version 1.0x - Freeside is not yet compatible with version 1.1x) -
  • Run make masondocs -
  • Copy masondocs/ to your web server's document space. -
  • Copy htetc/handler.pl to your web server's configuration directory. -
  • Edit handler.pl and set an appropriate data_dir, such as /usr/local/etc/freeside/mason-data -
  • Configure Apache to use the handler.pl file and to execute .cgi files using HTML::Mason. For example: -
    -<Directory /usr/local/apache/htdocs/freeside-mason>
    -<Files ~ (\.cgi)>
    -AddHandler perl-script .cgi
    -PerlHandler HTML::Mason
    -</Files>
    -<Perl>
    -require "/usr/local/apache/conf/handler.pl";
    -</Perl>
    -</Directory>
    -
    -
- - -- cgit v1.2.1