*

MB Themes

Re: Memcache(d) Questions and Issues
« Reply #45 on: January 18, 2023, 10:35:57 PM »
Just remove that auth line and thats it

You mean line 270

Code: [Select]
$this->_redis->auth($_config['password']);
??

Yes.

Some issues, one of them when i view ANY category.

Hard to help. Something in error log?
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

dsf

  • *****
  • 261 posts
Re: Memcache(d) Questions and Issues
« Reply #46 on: January 18, 2023, 10:38:08 PM »
The errors are from debug.log i posted above. No see nowhere any other errors.

*

MB Themes

Re: Memcache(d) Questions and Issues
« Reply #47 on: January 24, 2023, 09:34:19 AM »
Probably some issue with cache.
It was not false, so was found, but not valid.
Try to go to that cache file and find:
Code: [Select]
      if(NULL === $value) {

replace with:
Code: [Select]
      if(false === $value) {
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

MB Themes

Re: Memcache(d) Questions and Issues
« Reply #48 on: January 24, 2023, 09:34:30 AM »
To disable password when not entered or empty, change this:
Code: [Select]
      $this->_redis->auth($_config['password']);

into this:
Code: [Select]
      if($_config['password'] != '') {
        $this->_redis->auth($_config['password']);
      }
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots