Translations
Info
All page names need to be in English.
en da  de  fr  it  ja  km  nl  ru  zh

Exception/v4/1316104317

From TYPO3Wiki
Jump to: navigation, search
Draft Change the {{draft}} marker to {{review}} when you need a reviewer for text and TypoScript. info

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:

PHP script:
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.

TS TypoScript:
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
}
Go to: typo3.org    
Login, and you can edit.
Personal tools
Namespaces

Variants
Actions