| Summary | Cache/memcache use passed parametes | 
| Queue | Horde Framework Packages | 
| Queue Version | HEAD | 
| Type | Bug | 
| State | Resolved | 
| Priority | 2. Medium | 
| Owners | Horde Developers (at) | 
| Requester | adrieder (at) sbox (dot) tugraz (dot) at | 
| Created | 01/15/2006 (7233 days ago) | 
| Due | |
| Updated | 03/11/2006 (7178 days ago) | 
| Assigned | 01/23/2006 (7225 days ago) | 
| Resolved | 03/11/2006 (7178 days ago) | 
| Github Issue Link | |
| Github Pull Request | |
| Milestone | |
| Patch | No | 
State ⇒ Resolved
about the Horde Log stuff. Thanks!
New Attachment: memcache.diff
Is not possible to use Horde_log becouse the package is independent
and cam be used separatly from Horde instalation.
State ⇒ Assigned
New Attachment: memcache.php[1].patch
New Attachment: memcache.php.patch
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ Cache/memcache use passed parametes
Queue ⇒ Horde Framework Packages
State ⇒ Unconfirmed
functioning at all because it wasn't able to connect with no
connection parameters defined:
--- memcache.php~ Fri Jan 13 18:58:05 2006
+++ memcache.php Sun Jan 15 14:49:56 2006
@@ -54,8 +54,8 @@
}
$this->_db = new Memcache;
- for ($i = 0, $n = count($this->_params['hostspec']); $i < $n; ++$i) {
- $this->_db->addServer($this->_params['hostspec'][$i],
$this->_params['port'][$i], $connect_persistent);
+ for ($i = 0, $n = count($params['hostspec']); $i < $n; ++$i) {
+ $this->_db->addServer($params['hostspec'][$i],
$params['port'][$i], $connect_persistent);
}
}