I think you've seen this already, but I'm
using AOLserver 4 without any problems on Mac OS X. I'm also using
AOLserver 4 on Linux for kurup.org, but it's running OpenACS 4.6.3.
I grabbed AOLserver and the necessary modules (nscache, nspostgres, nsrewrite and nssha1) from CVS. I downloaded tDOM from http://tdom.org.
I'm using the default config.tcl file that's in OpenACS CVS, except for the following (mostly minor) changes:
Index: config.tcl
===================================================================
RCS file: /cvsroot/openacs-4/etc/config.tcl,v
retrieving revision 1.8
diff -u -b -B -r1.8 config.tcl
--- config.tcl 8 Oct 2003 08:15:27 -0000 1.8
+++ config.tcl 22 Oct 2003 03:27:26 -0000
@@ -20,14 +20,14 @@
set httpsport 8443
# The hostname and address should be set to actual values.
-set hostname [ns_info hostname]
-set address 127.0.0.1
+set hostname localhost
+set address 0.0.0.0
-set server "service0"
+set server "openacs"
set db_name $server
set servername "New OpenACS Installation - Development"
-set serverroot "/var/lib/aolserver/${server}"
+set serverroot "/Users/vinod/web/${server}"
# if debug is false, all debugging will be turned off
set debug false
@@ -39,12 +39,13 @@
# don't uncomment modules unless they have been installed.
ns_section ns/server/${server}/modules
+ns_param nsdb ${bindir}/nsdb.so
ns_param nssock ${bindir}/nssock.so
ns_param nslog ${bindir}/nslog.so
ns_param nssha1 ${bindir}/nssha1.so
ns_param nscache ${bindir}/nscache.so
ns_param nsrewrite ${bindir}/nsrewrite.so
-ns_param libtdom ${bindir}/libtdom.so
+#ns_param libtdom ${bindir}/libtdom.so
# nsopenssl will fail unless the cert files are present as specified
# later in this file, so it's disabled by default
@@ -104,7 +105,7 @@
#
ns_section ns/threads
ns_param mutexmeter true ;# measure lock contention
-ns_param stacksize 500000
+ns_param stacksize 4096000
#
# MIME types.
Does AOLserver spit any error messages at you, or just hang?