Summary | Wrong entries for Sessionhandler memcached |
Queue | Horde Base |
Queue Version | HEAD |
Type | Bug |
State | Resolved |
Priority | 2. Medium |
Owners | |
Requester | andreas (at) dahlen (dot) ws |
Created | 04/05/2005 (7477 days ago) |
Due | |
Updated | 04/07/2005 (7475 days ago) |
Assigned | |
Resolved | 04/07/2005 (7475 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Resolved
State ⇒ Unconfirmed
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ Wrong entries for Sessionhandler memcached
Queue ⇒ Horde Base
get the following error:
"No configuration information specified for session handler memcached.
The file /config/conf.php should contain some
$conf['sessionhandler']['params'] settings."
The lines that are created for sessionhandler:
$conf['sessionhandler']['hostspec'] = 'localhost';
$conf['sessionhandler']['port'] = 11211;
$conf['sessionhandler']['type'] = 'memcached';
When I changed them to the following everything worked:
$conf['sessionhandler']['params']['hostspec'] = 'localhost';
$conf['sessionhandler']['params']['port'] = 11211;
$conf['sessionhandler']['type'] = 'memcached';
['params'] are missing for ['hostspec] and ['port']