From: ivan Date: Tue, 5 Feb 2002 18:24:13 +0000 (+0000) Subject:   for commands; confusing otherwise X-Git-Tag: freeside_1_4_0pre11~102 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=30f31aae2dee3bdbec04f107e9d8cbb96442852e   for commands; confusing otherwise --- diff --git a/httemplate/docs/install.html b/httemplate/docs/install.html index 2a208c016..35caa0023 100644 --- a/httemplate/docs/install.html +++ b/httemplate/docs/install.html @@ -103,11 +103,11 @@ $ su
  • Create a Global directory, such as /usr/local/etc/freeside/asp-global/
  • Copy htetc/global.asa to the Global directory:
    -cp htetc/global.asa /usr/local/etc/freeside/asp-global/global.asa
    +cp htetc/global.asa /usr/local/etc/freeside/asp-global/global.asa
     
  • Configure Apache for the Global directory and to execute .cgi files using Apache::ASP. For example:
    -<Directory /usr/local/apache/htdocs/freeside-asp>
    +<Directory /usr/local/apache/htdocs/freeside-asp>
     <Files ~ (\.cgi)>
     AddHandler perl-script .cgi
     PerlHandler Apache::ASP
    @@ -115,7 +115,7 @@ PerlHandler Apache::ASP
     <Perl>
     $MLDBM::RemoveTaint = 1;
     </Perl>
    -PerlSetVar Global /usr/local/etc/freeside/asp-global/
    +PerlSetVar Global /usr/local/etc/freeside/asp-global/
     PerlSetVar Debug 2
     </Directory>
     
    @@ -127,13 +127,13 @@ PerlSetVar Debug 2
  • 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>
    +<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";
    +require "/usr/local/apache/conf/handler.pl";
     </Perl>
     </Directory>