From 51984ac3d3da3006809c6866fdecd4ad83610731 Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 30 Jul 2001 07:36:04 +0000 Subject: templates!!! --- httemplate/docs/install.html | 121 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 121 insertions(+) create mode 100644 httemplate/docs/install.html (limited to 'httemplate/docs/install.html') diff --git a/httemplate/docs/install.html b/httemplate/docs/install.html new file mode 100644 index 000000000..d61dc9dfa --- /dev/null +++ b/httemplate/docs/install.html @@ -0,0 +1,121 @@ + + Installation + + +

Installation

+Before installing, you need: + +Install the Freeside distribution: + + + + + + + + + +
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>
    +
    +
    +
  • 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