| | |
| | | // Session path. Defaults to PHP session.cookie_path setting. |
| | | $rcmail_config['session_path'] = null; |
| | | |
| | | // Backend to use for session storage. Can either be 'db' (default) or 'memcache' |
| | | // If set to memcache, a list of servers need to be specified in 'memcache_hosts' |
| | | // Backend to use for session storage. Can either be 'db' (default), 'memcache' or 'php' |
| | | // If set to 'memcache', a list of servers need to be specified in 'memcache_hosts' |
| | | // Make sure the Memcache extension (http://pecl.php.net/package/memcache) version >= 2.0.0 is installed |
| | | // Setting this value to 'php' will use the default session save handler configured in PHP |
| | | $rcmail_config['session_storage'] = 'db'; |
| | | |
| | | // Use these hosts for accessing memcached |