Page 1 of 1
Search found 5 matches
Re: How to setup redis cache in Opencart 2.3
Any Help ?
Jump to post- Thu Jul 27, 2017 5:23 am
- Replies 7
- Views 6726
Re: How to setup redis cache in Opencart 2.3
Hi,daveyoi wrote: ↑Tue Jul 25, 2017 4:50 pmThere is not much detail in the commit that added this cache, but looking at the code I would assume you need the Predis PHP extension installed to make this work.
https://github.com/phpredis/phpredis
PHP redis is already installed as i said earlier redis is working fine on the server Jump to post
- Tue Jul 25, 2017 5:31 pm
- Replies 7
- Views 6726
Re: How to setup redis cache in Opencart 2.3
I see the same redis file is here : https://github.com/opencart/opencart/commit/08592fc1c7cef2477f9fa788243a0fba33117a72 Also one thing I forgot to mention after changing the /config.php changed the cache driver in / System / config / default.php // Cache $_['cache_type'] = 'redis'; // apc, file or ...
Jump to post- Tue Jul 25, 2017 5:15 pm
- Replies 7
- Views 6726
How to setup redis cache in Opencart 2.3
Hi, There is a Redis cache driver in Opencart 2.3 system/library/cache/redis.php <?php namespace Cache; class Redis { private $expire; private $cache; public function __construct($expire) { $this->expire = $expire; $this->cache = new \Redis(); $this->cache->pconnect(CACHE_HOSTNAME, CACHE_PORT); } pu...
Jump to post- Tue Jul 25, 2017 6:40 am
- Replies 7
- Views 6726
Re: New Template for OpenCart 2.0
I'm proud to show off the next version of opencarts frontend: http://oc2.opencartdemo.com/ let me know what you think! I'm adding it to github now. O Daniel , my dear your work is really very-very appreciative, the best is you are offering it free, Being a store owner i have been using OpenCart for...
Jump to post- Wed Mar 19, 2014 4:55 am
- Replies 190
- Views 166520
Search found 5 matches