YII框架 插件引入问题,手动引入 redis插件, class "yii\redis\Cache".

PHP技术
458
0
0
2022-06-09
标签   Redis

这边例子是redis 插件的手动引入 ;

common/main-local.php

YII框架 插件引入问题,没有通过composer, 手动引入 ,Failed to instantiate component or class "yii\redis\Cache".

配置过后 ,没有其他操作, 访问url会报错 , redis\Cache ;类无法找到 ; 原因就是在插件的extensions.php 文件没有引入redis 配置

YII框架 插件引入问题,没有通过composer, 手动引入 ,Failed to instantiate component or class "yii\redis\Cache".

报错信息

YII框架 插件引入问题,没有通过composer, 手动引入 ,Failed to instantiate component or class "yii\redis\Cache".

处理这个错误需要把插件正确的引用进来,需要在extensions.php 文件加入redis配置 ;

YII框架 插件引入问题,没有通过composer, 手动引入 ,Failed to instantiate component or class "yii\redis\Cache".

这样问题就可以解决了,其他插件的引入同理