蛋糕版:2.4.3
PHP:文件系统相关扩展
Redis:6.0
扩展坞:3.1
我正在运行一个蛋糕项目2.4.3并有一个错误
Cache engine search is not properly configured.
Error: An Internal Error Has Occurred.
第159行→缓存::配置(字符串,数组)
'search'
array(
'port' => '*****',
'prefix' => '*****',
'engine' => 'Redis',
'server' => '172.30.1.5',
'duration' => (int) 1
)
我该怎么解决这个问题?谢谢大家!
2条答案
按热度按时间q8l4jmvw1#
该错误消息可能有点误导,因为它不一定与配置相关,在以后的2.x版本中更改为:
缓存引擎“%s”配置不正确。请确保已安装所需的扩展,并且凭据/权限正确
检查这些东西,并尝试在CakePHP源代码中调试,redis连接是在
RedisEngine::_connect()
方法中建立的,位于lib/Cake/Cache/Engine/RedisEngine.php
。可能的异常可能包含有用的信息。
$this->_Redis->getLastError()
也可能包含。oo7oh9g92#
我发现问题是PHP 5.6扩展没有启用Redis
安装Redis扩展PHP5.6
编辑文件php.ini添加
并重新启动服务器。享受!