From: Geoffrey T. D. <da...@us...> - 2001-09-19 19:12:19
|
Update of /cvsroot/phpwiki/phpwiki In directory usw-pr-cvs1:/tmp/cvs-serv10976 Modified Files: index.php Log Message: Added note about the possible need to set session.save_path. Index: index.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/index.php,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -r1.23 -r1.24 *** index.php 2001/09/19 03:44:53 1.23 --- index.php 2001/09/19 19:12:16 1.24 *************** *** 67,70 **** --- 67,82 ---- define('ALLOW_BOGO_LOGIN', true); + // The login code now uses PHP's session support. Usually, the default + // configuration of PHP is to store the session state information in + // /tmp. That probably will work fine, but fails e.g. on clustered + // servers where each server has their own distinct /tmp (this + // is the case on SourceForge's project web server.) You can specify + // an alternate directory in which to store state information like so + // (whatever user your httpd runs as must have read/write permission + // in this directory): + + // ini_set('session.save_path', 'some_other_directory'); + + ///////////////////////////////////////////////////////////////////// // |