Index: openacs-4/packages/acs-bootstrap-installer/installer/index.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-bootstrap-installer/installer/index.tcl,v diff -u -N -r1.6 -r1.7 --- openacs-4/packages/acs-bootstrap-installer/installer/index.tcl 17 Oct 2001 17:36:42 -0000 1.6 +++ openacs-4/packages/acs-bootstrap-installer/installer/index.tcl 4 Mar 2002 14:53:30 -0000 1.7 @@ -25,11 +25,11 @@ if { [ad_verify_install] } { install_return 200 "OpenACS Installation Complete" " -You have successfully installed the OpenACS Community System! +You have successfully installed the Open Architecture Community System (OpenACS)!

Your server process has been terminated. Unless you have configured your web server to restart automatically, as outlined in the -ACS 4.x Installation Guide, +OpenACS 4.x Installation Guide, you will need to start your web server again. When the web server restarts, OpenACS will be fully functional and you can reload this page to access the running web server. @@ -49,7 +49,7 @@ set body " -Thank you for installing the OpenACS Community System, +Thank you for installing the Open Architecture Community System (OpenACS), a suite of fully-integrated enterprise-class solutions for collaborative commerce. This is the OpenACS Installer which performs all the steps necessary @@ -71,12 +71,12 @@

The first step involved in setting up your OpenACS installation is to configure your RDBMS, correctly install a database driver, -and configure OpenNSD to use it. You can download -and install the latest version of the ArsDigita Oracle driver for -OpenNSD from the ArsDigita Web site -and the latest version of the OpenACS Postgres driver from the -OpenAcs Web site.

-Once you're sure everything is installed and configured correctly, restart OpenNSD.

+and configure AOLserver to use it. You can download +and install the latest version of the AOLserver Oracle and PostgreSQL drivers +from the OpenACS.org Software Page. + +

+Once you're sure everything is installed and configured correctly, restart AOLserver.

" install_return 200 "Error" $body return @@ -114,7 +114,7 @@ set error_p 1 } -# OpenNSD must support ns_cache. +# AOLserver must support ns_cache. if {[llength [info commands ns_cache]] < 1} { append errors "
  • The ns_cache module is not installed. This is required to support the OpenACS Security system. Please make sure that ns_cache @@ -133,18 +133,18 @@ set error_p 1 } -# OpenNSD must have XML parsing. +# AOLserver must have XML parsing. if {![xml_support_ok xml_status_msg]} { - append errors "XML support for OpenNSD is problematic:

    $xml_status_msg" + append errors "Problems with XML support for AOLserver:

    $xml_status_msg" set error_p 1 } -# OpenNSD must support the "fancy" ADP parser. +# AOLserver must support the "fancy" ADP parser. set adp_support [ns_config "ns/server/[ns_info server]/adp" DefaultParser] if { [string compare $adp_support "fancy"] } { append errors "

  • The fancy ADP parser is not enabled. This is required to support the OpenACS Templating System. Without this templating system, none of the OpenACS pages installed by default -will display. Please add the following to your OpenNSD configuration file (usually in +will display. Please add the following to your AOLserver configuration file (usually in /home/aol30/yourservname.ini) or see the Installation Guide for more information.

    @@ -157,13 +157,13 @@
         set error_p 1
     }   
     
    -# OpenNSD must have a large stack size (at least 128K)
    +# AOLserver must have a large stack size (at least 128K)
     set stacksize [ns_config "ns/threads" StackSize]
     if { $stacksize < [expr 128 * 1024] } {
     
    -    append errors "
  • The configured OpenNSD Stacksize is too small ($stacksize). + append errors "

  • The configured AOLserver Stacksize is too small ($stacksize). OpenACS requires a StackSize parameter of at least 131072 (ie 128K). -Please add the following to your OpenNSD configuration file or +Please add the following to your AOLserver configuration file or see the Installation Guide for more information.

     \[ns/threads\]