首页 > 解决方案 > Typo3 扩展“无法确定插件”异常

问题描述

我创建了一个扩展,在查看它时显示此错误

无法确定扩展“NewsInfoApi”和插件“newsinfoapi”的默认控制器。请在 ext_localconf.php 中检查 TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin()***

这是我的 ext_localconf.php

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
         'NEWS.NewsInfoApi',
         'Newsinfoapi',
         [
             'Api' => 'list'
         ],
         // non-cacheable actions
         [
             'Api' => 'list'
         ]
     );

可能是什么问题?

标签: phptypo3-7.6.xtypo3-8.xtypo3-extensions

解决方案


推荐阅读