[TYPO3-german] The action "createFinished" (controller "Tipp") is not allowed by this plugin. Please check TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin() in your ext_localconf.php.

Christian Eßl indy.essl at gmail.com
Sun Feb 10 10:29:48 CET 2013


Extbase wirft beim Versuch, action "createFinished" in Controller
"Tipp" aufzurufen, diese bekannte Exception:

The action "createFinished" (controller "Tipp") is not allowed by this
plugin. Please check
TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin() in your
ext_localconf.php.

Die Konfiguration in ext_localconf.php ist ganz normal:

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
	'TYPO3.' . $_EXTKEY,
	'AddTipp',
	array(
		'Tipp' => 'new, create, createFinished',
		
	),
	// non-cacheable actions
	array(
		'Tipp' => 'new, create',
		
	)
);

Was extbase aber getrost ignoriert.
Also habe ich mich in der Klasse
extbase/Classes/Mvc/Web/RequestBuilder.php umgesehen und mal das
Array, nach dem die Action abgeprüft wird, ausgegeben:

array(2) { [0]=> string(3) "new" [1]=> string(6) "create" }

Meine action "createFinished" fehlt in dieser Auflistung. Überhaupt
wird scheinbar keine der action, die ich in ext_localconf.php
hinzuzufügen versuche, übernommen. Cache unter typo3temp/Cache/ lösche
ich hier schon die ganze Zeit. Oder cacht extbase die
Plugin-Konfiguration an einem anderen Ort?
Ich verzweifle hier echt gerade.


More information about the TYPO3-german mailing list