We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Grav appears to be making an improper call that ( at least in my environment ) prevents it from working.
Standard zip install using 1.1.3 zip file results in the following when attempting to configure memcached:
Whoops \ Exception \ ErrorException (E_ERROR) Call to undefined method Memcached::connect() 0 Whoops\Exception\ErrorException …/system/src/Grav/Common/Cache.php186 case 'memcached': $memcached = new \Memcached(); $memcached->connect($this->config->get('system.cache.memcached.server', 'localhost'), $this->config->get('system.cache.memcached.port', 11211)); $driver = new DoctrineCache\MemcachedCache(); $driver->setMemcached($memcached); break;
Per this discussion at StackOverflow I make the following change to line 186:
$memcached->connect($this->config->get('system.cache.memcached.server', 'localhost'),
becomes
$memcached->addServer($this->config->get('system.cache.memcached.server', 'localhost'),
System functionality is immediately restored.
The text was updated successfully, but these errors were encountered:
Will fix. Thanks!
Sorry, something went wrong.
Fix for memcached connection #1020
7eb76ee
No branches or pull requests
Grav appears to be making an improper call that ( at least in my environment ) prevents it from working.
Standard zip install using 1.1.3 zip file results in the following when attempting to configure memcached:
Per this discussion at StackOverflow I make the following change to line 186:
becomes
System functionality is immediately restored.
The text was updated successfully, but these errors were encountered: