X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fdocs%2Finstall.html;h=56cee80e5cf5c9109dc5bb940a1b414203bff345;hp=44644dc914bc66d0985a244b6d6be89a4dde87ed;hb=de0898ba517025f865f80b351440f77a422d5bad;hpb=4bbf90e800406ff75a5fed09ba5cd71293cda542 diff --git a/httemplate/docs/install.html b/httemplate/docs/install.html index 44644dc91..56cee80e5 100644 --- a/httemplate/docs/install.html +++ b/httemplate/docs/install.html @@ -5,17 +5,24 @@

Installation

Before installing, you need: Install the Freeside distribution: @@ -46,21 +59,48 @@ Install the Freeside distribution:
  • Add the user `freeside' to your system.
  • Allow the freeside user full access to the freeside database. -
  • Add the freeside database to your database engine. (with MySQL) (with PostgreSQL) -
  • Unpack the tarball:
    gunzip -c fs-x.y.z.tar.gz | tar xvf -
    -
  • Build and install the Perl libraries: + +
  • Edit the top-level Makefile: + +
  • Add the freeside database to your database engine: +
    +$ su
    +# make create-database
    + (or manually, with Postgres:) +
    +$ su freeside
    +$ createdb freeside
    + (with MySQL:) +
    +$ mysqladmin -u freeside -p create freeside 
    +
  • Build and install the Perl modules:
    -$ cd FS/
    -$ perl Makefile.PL
    -$ make
    +$ make perl-modules
     $ su
    -# make install UNINST=1
    -
  • You should run a separate iteration of Apache[-SSL] with mod_perl enabled as the freeside user. +# make install-perl-modules +
  • Create the necessary configuration files:
    +$ su
    +# make create-config
    +
    +
  • Run a separate iteration of Apache[-SSL] with mod_perl enabled as the freeside user. @@ -70,11 +110,18 @@ $ su
    • 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. +
    • Create a Global directory, such as /usr/local/etc/freeside/asp-global/: +
      +mkdir /usr/local/etc/freeside/asp-global/
      +chown freeside /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
      +
    • 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
      @@ -82,25 +129,25 @@ 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>
       
      -
    • NOTE: Mason support is still a bit buggy in the 1.4.0 prereleases. This will be fixed before 1.4.0. You have been warned.
    • 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>
      +<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>
       
      @@ -108,13 +155,39 @@ require "/usr/local/apache/conf/handler.pl";