Publisher does not support the Fluid field type. Please do not contact asking when support will be available.
If you purchased an add-on from expressionengine.com, be sure to visit boldminded.com/claim to add the license to your account here on boldminded.com.
Ticket: Error: Call to function scan() on null
Status | Resolved |
Add-on / Version | Speedy 1.3.0 |
Severity | |
EE Version | 6 |
Chad Nelson-Toohey
Dec 24, 2020Hello,
I just started setting up speedy in a production environment and was encountering an error I didn’t receive while configuring dev. Whenever I add in the exact config I use on dev, I receive the errors included in the screenshot. Any idea why this might be happening? Also here is my config included below:
$config['speedy_enabled'] = 'yes';
$config['speedy_static_enabled'] = 'yes';
$config['speedy_break_async'] = 'no';
$config['speedy_driver'] = 'redis';
$config['speedy_redis_settings'] = [
'static' => 'yes',
'servers' => [
[
'host' => '127.0.0.1',
'port' => '6379',
'timeout' => '0',
'password' => null,
]
],
];
BoldMinded (Brian)
Dec 24, 2020
scan is a Redis function… so it’s trying to call scan on a null, my guess is it means that Redis isn’t installed or enabled on the server.