Update of /cvsroot/basedb/basedb
In directory sc8-pr-cvs1:/tmp/cvs-serv9956
Modified Files:
example_config.inc.php
Log Message:
rewrote BaseControl to be much more robust and optionally use flock()
Index: example_config.inc.php
===================================================================
RCS file: /cvsroot/basedb/basedb/example_config.inc.php,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** example_config.inc.php 1 Feb 2003 17:18:50 -0000 1.16
--- example_config.inc.php 16 Feb 2003 02:03:46 -0000 1.17
***************
*** 62,65 ****
--- 62,71 ----
$config["mime.types"] = "/usr/local/apache/conf/mime.types";
+ // Whether to use flock() for the locking needed by BASE. If your
+ // tempDir is on NFS or VFAT or some other file system which does
+ // not support flock(), you _must_ turn this off. The BaseControl
+ // table of the relational database will then be used for locking.
+ $config["useFlock"] = 1;
+
// Paths to various parts of BASE.
// Note that you can move the "www" directory to wherever you wish, as
|