CodeIgniter Forums
Error Cell caching - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28)
+--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30)
+--- Thread: Error Cell caching (/showthread.php?tid=66086)



Error Cell caching - HTLove - 09-04-2016

Hi
I'm using guild https://bcit-ci.github.io/CodeIgniter4/general/view_cells.html but error Call to undefined method CodeIgniter\Cache\Handlers\FileHandler:Confusedet()
[Image: CpAjEyC.png]

i'm thing fix $this->cache->set($cacheName, $output, $ttl); to $this->cache->save($cacheName, $output, $ttl);

tks so much


RE: Error Cell caching - kilishan - 10-18-2016

(09-04-2016, 03:25 AM)HTLove Wrote: I'm thinking fix $this->cache->set($cacheName, $output, $ttl); to $this->cache->save($cacheName, $output, $ttl);

You're absolutely correct. Will have it patched up shortly.


RE: Error Cell caching - HTLove - 10-19-2016

(10-18-2016, 09:34 PM)kilishan Wrote:
(09-04-2016, 03:25 AM)HTLove Wrote: I'm thinking fix $this->cache->set($cacheName, $output, $ttl); to $this->cache->save($cacheName, $output, $ttl);

You're absolutely correct. Will have it patched up shortly.

Tks you !!