如何删除TYPO3中重命名的flexform变量的旧变量?

如何删除TYPO3中重命名的flexform变量的旧变量?,typo3,Typo3,我在扩展中添加了FlexForm,其中有14个变量,如: <settings.flex.usernameMinimumLengthActive> <TCEforms> <label>LLL:EXT:rm_registration/Resources/Private/Language/locallang_db.xlf:extension_flexform.usernameMinimumLengthActive</label>

我在扩展中添加了FlexForm,其中有14个变量,如:

<settings.flex.usernameMinimumLengthActive>
    <TCEforms>
        <label>LLL:EXT:rm_registration/Resources/Private/Language/locallang_db.xlf:extension_flexform.usernameMinimumLengthActive</label>
        <config>
            <type>check</type>
            <items type="array">
                <numIndex index="1" type="array">
                    <numIndex index="0">LLL:EXT:lang/Resources/Private/Language/locallang_core.xlf:labels.enabled</numIndex>
                    <numIndex index="1">1</numIndex>
                </numIndex>
            </items>
        </config>
    </TCEforms>
</settings.flex.usernameMinimumLengthActive>

LLL:EXT:rm_registration/Resources/Private/Language/locallang_db.xlf:extension_flexform.usernamemimumlengthactive
检查
LLL:EXT:lang/Resources/Private/Language/locallang\u core.xlf:labels.enabled
1.
零件内部

我更改了所有变量的名称(
settings.flex.xxx

我的调试显示所有变量:新变量和旧变量

我的问题是:如何删除旧变量

我试过了
  • 清除BE中的缓存(系统、前端)
  • 清除缓存(Installtool)
  • 清除FE浏览器缓存
  • 另一个浏览器
我仍然拥有包括旧名称在内的所有变量。

我找到了解决方案
  • 插件的ID
  • 在列表或页面模块中,我将PluginIcon悬停。我得到了我想要配置的插件的Uid

  • In-Adminer(从TER安装的t3adminer)
  • 我单击了
    tt\u content
    的图标(FlexForm将其配置写入名为
    pi\u FlexForm
    tt\u content
    字段)

    我搜索插件的Uid并编辑记录

  • 清空字段
    pi_flexform
    或者删除旧条目并转到8。(感谢)

  • 返回列表或页面模块

  • 编辑插件

  • 使用Flexform重新配置插件

  • 保存插件(现在FlexForm设置仅使用新设置再次填充
    pi_FlexForm

  • 完成


  • 你也可以删除那里的旧设置。谢谢你的注释,我会把它添加到我的答案中。