Summary | Memcached and sessions |
Queue | Horde Framework Packages |
Queue Version | HEAD |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | slusarz (at) horde (dot) org |
Requester | jens (at) peino (dot) de |
Created | 04/17/2008 (6302 days ago) |
Due | |
Updated | 04/22/2008 (6297 days ago) |
Assigned | |
Resolved | 04/22/2008 (6297 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
Assigned to Michael Slusarz
State ⇒ Resolved
State ⇒ Unconfirmed
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ Memcached and sessions
Queue ⇒ Horde Framework Packages
Milestone ⇒
Patch ⇒ No
Warning: SessionHandler::include(Horde/SessionHandler/1.php): failed
to open stream: No such file or directory in
/usr/share/php5/PEAR/Horde/SessionHandler.php on line 97 Warning:
SessionHandler::include(): Failed opening 'Horde/SessionHandler/1.php'
for inclusion
(include_path='.:/usr/share/php:/usr/share/php/PEAR:/usr/share/php5:/usr/share/php5/PEAR:/usr/share/php5/SMARTY') in /usr/share/php5/PEAR/Horde/SessionHandler.php on line
97
And below:
Notice: Undefined index: persistent in
/usr/share/php5/PEAR/Horde/SessionHandler/memcache.php on line 287
For current session it says:
Listing sessions failed: Memcache session tracking not enabled.
My session settings in the conf:
$conf['sessionhandler']['params']['track'] = true;
$conf['sessionhandler']['type'] = 'memcache';
$conf['sessionhandler']['memcache'] = true;
My memcache settings in the conf:
$conf['memcache']['hostspec'] = array('localhost');
$conf['memcache']['port'] = array('11211');
$conf['memcache']['weight'] = array();
$conf['memcache']['persistent'] = true;
$conf['memcache']['compression'] = false;
$conf['memcache']['large_items'] = true;
$conf['memcache']['enabled'] = true;