[imp] Cookies?

J?rgen Tysnes jorgen@turp.sytes.net
Tue, 3 Apr 2001 15:57:55 +0200


> and went through the "Click here to test PHPlib for Horde", and the
> counter doesn't increment, so there's something amiss with your PHPlib
> setup. Check to make sure you've uncommented the appropriate bits and
> filled in the appropriate values in local.inc.

Guess this must be it, but I cant find anything wrong...

/*
 * The following classes define our session, authentication, and user
 * properties.  You probably don't need to make any changes to them.
 */
class HordeSession extends Session { 
var $classname = 'HordeSession';
var $cookiename     = '';           // defaults to classname
var $magic          = 'chuckmIMP';  // ID seed 
var $mode           = 'cookie';     // We propagate session IDs with cookies
var $fallback_mode  = 'get';
var $lifetime       = 0;            // 0 = do session cookies,
	else minutes
var $that_class     = 'HordeCT';    // name of data storage container
var $gc_probability = 5;
var $allowcache     = 'no';         // don't allow any caching of pages
}
class HordeSessionCached extends HordeSession {
var $allowcache     = 'private';    // allow private caching of pages
}
	
-Jorgen