Exception/v4/1316104317
From TYPO3Wiki
The default controller can not be determined. Please check for Tx_Extbase_Utility_Extension::configurePlugin() in your ext_localconf.php
Basic requirements
This basically means that you need to define a controller in your ext_localconf.php. Usually the first entry is taken as default controller/action. Here's an example:
Tx_Extbase_Utility_Extension::configurePlugin( $_EXTKEY, // Plugin name 'Pi1', // An array of controller-action combinations. The first one found is the default one. array( 'YourController' => 'index,new,create,edit,update' ), // An array of non-cachable controller-action-combinations (they must already be enabled) array( 'YourController' => 'new,create,edit,update' ) );
Situation: Adding your plugin via TypoScript
This error can appear if you got your TypoScript wrong. Make sure that you write your settings with the first letter in uppercase and double-check your ext_localconf.
lib.test = USER_INT lib.test { # Calling the extbase bootstrapper userFunc = tx_extbase_core_bootstrap->run # Upcase! extensionName = MyExt # As you set it in Tx_Extbase_Utility_Extension::configurePlugin pluginName = Pi1 }