我刚刚删除了Media Plugin并编辑了我的bootstrap.php。我现在得到一个Missing插件异常。我做错了吗?
答案 0 :(得分:1)
您可能仍在引用应用中的某个插件,例如尝试使用使用插件表示法的Helper
或Model
;
app/tmp/cache/models
和app/tmp/cache/persistent/
目录的内容,清除应用程序的缓存控制器中的助手和模型:
public $helpers = array(
'Media.Somehelper',
);
public $uses = array(
'Media.Somemodel'
);
或在模型中;
public $actsAs => array(
'Media.Somebehavior',
);