Forum OpenACS Q&A: parse directory inside /tcl

Collapse
Posted by David Kuczek on
What do I have to do in order to make aolserver parse a directory with
tcl library files within /tcl (i.e. /tcl/mydir)?
Collapse
Posted by Carl Coryell-Martin on
You have to add a line to the nsd.tcl file. here is a sample:
ns_section "ns/server/${server}/modules" 
        ns_param   nssock          ${bindir}/nssock.so 
        ns_param   nslog           ${bindir}/nslog.so 
        ns_param   nsperm          ${bindir}/nsperm.so 
        ns_param   civupload       ${bindir}/civupload.so
        # Load the mydir module
        ns_param mydir tcl
Collapse
Posted by Cynthia Kiser on
WAG - Try adding a tcl module to the stuff in you server.ini file.
[ns/server/myserver/modules]
nssock=nssock.so
nslog=nslog.so
mysubdir=Tcl
Collapse
Posted by Neophytos Demetriou on
Hi Carl. I'm catching up with postings and I wonder whether civupload.so is a solution to the upload issue discussed in the aolserver mailing list, recently. Thanks.