理由はわかりませんが、エラーは何も変更されずに消えます。今では動作します。私は何も変えていません。(何度もキャッシュを削除したのでキャッシュのせいではありません)
問題
拡張機能ビルダーを使用して拡張機能を作成しました (公式ドキュメントには例がないため、誰かが適切なドキュメントを知っている場合はリンクを教えてください)。フォームがあり、フォームを送信するとエラーが発生します
タイポ3 v4.7
アクション「formSave」(コントローラー「プロモーター」) は、このプラグインでは許可されていません。ext_localconf.php の Tx_Extbase_Utility_Extension::configurePlugin() を確認してください。
ext_localconf.php は、typo の wiki に従って作成しました。
フォームコード
<f:form action="formSave" name="" object="">
<f:form.textfield id="emailResendInterval" name="emailResendInterval" value="" />
<f:form.textarea cols="30" rows="5" id="emails" name="emails" value="" />
<f:form.submit name="submit" value="Save" />
</f:form>
ext_localconf.php
<?php
if (!defined ('TYPO3_MODE')) die ('Access denied.');
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF'][$_EXTKEY] = unserialize($_EXTCONF);
if ($GLOBALS['TYPO3_CONF_VARS']['EXTCONF'][$_EXTKEY]['registerSinglePlugin']) {
// fully fletged blog
Tx_Extbase_Utility_Extension::configurePlugin(
$_EXTKEY, // The extension name (in UpperCamelCase) or the extension key (in lower_underscore)
'Promoters', // A unique name of the plugin in UpperCamelCase
array ( // An array holding the controller-action-combinations that are accessible
'Promoters' => 'configuration,formSave', // The first controller and its first action will be the default
),
array( // An array of non-cachable controller-action-combinations (they must already be enabled)
)
);
} else {
Tx_Extbase_Utility_Extension::configurePlugin(
$_EXTKEY, // The extension name (in UpperCamelCase) or the extension key (in lower_underscore)
'Promoters', // A unique name of the plugin in UpperCamelCase
array ( // An array holding the controller-action-combinations that are accessible
'Promoters' => 'configuration,formSave', // The first controller and its first action will be the default
),
array( // An array of non-cachable controller-action-combinations (they must already be enabled)
)
);
プロモーターコントローラー
class Tx_Promoters_Controller_PromotersController extends Tx_Extbase_MVC_Controller_ActionController {
/**
* action configuration
*
* @return void
*/
public function configurationAction() {
}
/**
* action formSave
*
* @return void
*/
public function formSaveAction() {
}
}