From: <tr...@us...> - 2002-09-26 19:36:51
|
Update of /cvsroot/basedb/basedb In directory usw-pr-cvs1:/tmp/cvs-serv24016 Modified Files: example_config.inc.php Log Message: Added protocolDir Index: example_config.inc.php =================================================================== RCS file: /cvsroot/basedb/basedb/example_config.inc.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** example_config.inc.php 8 Sep 2002 13:19:00 -0000 1.5 --- example_config.inc.php 26 Sep 2002 19:36:47 -0000 1.6 *************** *** 46,49 **** --- 46,51 ---- // multiple installations of BASE on a single machine). $config["cookieName"] = "session"; + // The persistent cookie for display settings + $config["displayCookie"] = "display"; // You don't need a trailing slash on any of the paths here. *************** *** 73,76 **** --- 75,80 ---- // Where the print map files are copied to $config["printMapDir"] = $config["dataDir"]."/printmaps"; + // Where the protocol files are copied to + $config["protocolDir"] = $config["dataDir"]."/protocols"; // Where we can find external executables belonging to BASE. *************** *** 85,88 **** --- 89,101 ---- $config["gnuplot"] = "gnuplot"; $config["mime.types"] = "/usr/local/apache/conf/mime.types"; + + // The access system uses a set of columns called readAccessN where + // N is in (1, ..., $config[accessColumns]). These columns exist + // in tables representing all sharable subclasses of Item. + // The maximum number of users+groups is this number times 64. + // Note that to alter this value you need to create the required + // columns in the database first. In the future there will be a + // script for doing this. + $config["accessColumns"] = 2; require_once("$config[webDir]/common.inc.php"); |