here it is again but with no attachment
# nsd.tcl -- This is a sample AOLserver Startup Script
#
# By [EMAIL PROTECTED], 2000-04-16
# Based on a file created by Curtis Galloway
#
# This sample script will, with minor modifications, get you
# up and running ACS on a Windows box.
#
# $Id: winnsd.txt,v 3.1 2000/04/18 19:10:37 mburke Exp $
#
set home [file dirname [ns_info config]]
set bin [file dirname [info nameofexecutable]]
# Setting the following should get you going.
set server acs
set httpport 8000
set oracleuser user
set oraclepassword pass
set sroot servers/$server
foreach d [list log servers $sroot $sroot/modules $sroot/pages] {
if ![file exists $home/$d] {
file mkdir $home/$d
}
}
ns_section ns/threads
ns_param stacksize 256000
ns_section ns/db/drivers
ns_param ora8 ora8.dll
ns_section ns/db/pool/main
ns_param driver ora8
ns_param connections 2
ns_param user $oracleuser
ns_param datasource ""
ns_param password $oraclepassword
ns_param verbose off
ns_section ns/db/pool/subquery
ns_param driver ora8
ns_param connections 2
ns_param user $oracleuser
ns_param datasource ""
ns_param password $oraclepassword
ns_param verbose off
ns_section ns/db/pool/log
ns_param driver ora8
ns_param connections 2
ns_param user $oracleuser
ns_param datasource ""
ns_param password $oraclepassword
ns_param verbose off
ns_section ns/db/pools
ns_param main main
ns_param subquery subquery
ns_param log log
ns_section ns/parameters
ns_param home $home
#ns_param auxconfigdir /web/$server/parameters
#ns_param smtphost your.mail.server
#ns_param smtpuser username
ns_section ns/servers
ns_param $server $server
ns_section ns/server/$server
ns_param threadtimeout 5000000
ns_param pageroot /$server/www
ns_param enabletclpages on
ns_param directoryfile index.tcl,index.adp,index.html,index.htm
ns_section ns/server/$server/adp
ns_param map /*.adp
ns_param defaultparser fancy
ns_section ns/server/$server/modules
foreach m [list nssock nslog nscache nssha1] {
ns_param $m $bin/$m.dll
}
ns_section ns/server/$server/adp
ns_param map /*.adp
ns_param map /*.htm
ns_section ns/server/$server/module/nssock
ns_param port $httpport
#ns_section ns/server/$server/module/nscgi
#ns_param map "GET /*.bat"
#ns_param map "GET /cgi $bin"
#ns_section ns/server/$server/module/nscp
#ns_param port 9999
#ns_section ns/server/$server/module/nscp/users
# password is "x"
#ns_param user nsadmin:t2GqvvaiIUbF2:
ns_section ns/server/$server/db
ns_param pools *
ns_param DefaultPool main
ns_section ns/server/$server/tcl
ns_param library /$server/tcl
----- Original Message -----
From: "Barry Books" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, April 17, 2001 5:35 AM
Subject: Re: [AOLSERVER] Help on Oracle8 driver for WinNT needed
> Here is a working config file from my development machine with Windows
2000,
> AOLServer 3.2ad10 and Oracle 8.1.6 on the same machine. You'll need to add
> Oracle username and password and change the oracle datasource. With oracle
> on the same machine "" should be fine.
>
> barry
>
> ----- Original Message -----
> From: "Ling Wang" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Monday, April 16, 2001 9:13 PM
> Subject: [AOLSERVER] Help on Oracle8 driver for WinNT needed
>
>
> > Dear AOLServer users,
> >
> > Has anyone on earth ever downloaded the Oracle8 driver for WinNT from
> > http://www.arsdigita.com/acs-repository and actually made it work for
> WinNT
> > ALOServer (both oracle8 and ALOServer live in the same WinNT machine). I
> > tried so many times and so many ways and I still can not make it work
(the
> > ALOServer works fine without the driver).
> >
> > The very first problem I have is that when nsd.exe try to load the
driver,
> > it looks for the function called Ns_ModuleInit in the ora8.dll. This
> > function does not exist in the ora8.dll. As a matter of fact, all other
> dlls
> > in the bin directory have this function, for example, nsd.dll, nscp.dll
> etc.
> > I looked through the source code and found only Ns_DbDriverInit.
> >
> > Any hint would be appreciated especially from the original author of the
> > driver.
> >
> > Thanks a lot.
> >
> > Ling Wang
> > _________________________________________________________________
> > Get your FREE download of MSN Explorer at http://explorer.msn.com
> >
>