---
title: "TYPO3 Exception 1313855175"
manual: "TYPO3 Exceptions"
version: "main"
permalink: "https://docs.typo3.org/permalink/t3exceptions:typo3-exception-1313855175"
source: "Exceptions/1313855175.rst"
rendered: "2026-09-24T13:19:33+00:00"
---

# TYPO3 Exception 1313855175 {#typo3-exception-1313855175}

> [!NOTE]
> Below, the TYPO3 community may have provided additional information or
> solutions for this exception. However, these may or may not apply to your
> particular case. If you can provide more information, you should come back
> here and add your experience and solution steps to this issue once you have
> resolved it.
>
> General TYPO3 troubleshooting tips can be found in the *Troubleshooting*
> section in the menu. You can also ask questions and receive support in the
> [TYPO3 Questions category on talk.typo3.org](https://talk.typo3.org/c/typo3-questions/).
>
> To add your experience, click "Edit on GitHub" above and follow the
> ["Edit on GitHub" workflow](https://docs.typo3.org/m/typo3/docs-how-to-document/main/en-us/Howto/EditOnGithub.html#docs-contribute-github-method).
> Also check out
> [our tip on Coding Style and reST](https://docs.typo3.org/permalink/t3exceptions:tip-about-rest-coding-style).

## The action "..." is not allowed by this plugin. {#the-action-is-not-allowed-by-this-plugin}

-   Check your `configurePlugin()` configuration
-   Check if you have a `Resources/Private/Templates/{controller}/{action}.html`
    For details, please see [https://forge.typo3.org/issues/31322](https://forge.typo3.org/issues/31322)

```
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
    '<ExtensionName>,
    '<PluginName>',
    [
        \Vendor\ExtensionName\Controller\YourController::class => 'yourAction',
    ],
    // non-cacheable actions
    [

    ]
);

```

or as of extbase 4.7 you need to update your FlexForm with all necessary
actions (semicolon separated) in case you use
switchableControllerActions:

> [!NOTE]
> As of TYPO3 10.3 switchable controller actions are deprecated.
> For details, please see [https://docs.typo3.org/c/typo3/cms-core/10.4/en-us/Changelog/10.3/Deprecation-89463-SwitchableControllerActions.html](https://docs.typo3.org/c/typo3/cms-core/10.4/en-us/Changelog/10.3/Deprecation-89463-SwitchableControllerActions.html)

```xml
<switchableControllerActions>
  <TCEforms>
    <label>LLL:EXT:kofomi/Resources/Private/Language/locallang_be.xml:flexforms_general.mode</label>
    <onChange>reload</onChange>
    <config>
      <type>select</type>
      <items>
        <numIndex index="0">
          <numIndex index="0">LLL:EXT:kofomi/Resources/Private/Language/locallang_be.xml:flexforms_general.mode.eventgroups</numIndex>
          <numIndex index="1">Events->list;Events->show</numIndex>
        </numIndex>
        <numIndex index="1">
          <numIndex index="0">LLL:EXT:kofomi/Resources/Private/Language/locallang_be.xml:flexforms_general.mode.persons</numIndex>
          <numIndex index="1">Persons->list;Persons->show</numIndex>
        </numIndex>
      </items>
    </config>
  </TCEforms>
</switchableControllerActions>
```

or

If you tried using FlexForms with `switchableControllerAction`
this overwrites your `ext_localconf.php` even if you delete the Flexform
and the link in your `ext_tables.php`. To work with your extension again
edit the table `tt_content` and search for `switchableControllerAction` in the column
`pi_flexform` and delete the content of this field and everything works
fine again without FlexForm.

Another issue that can occur is an issue with `realurl` configuration.
It may pass action params as uppercase e.g. 'Show' instead of
'show'. Either fix the `realurl` configuration or allow actions in
uppercase.

Also, as developer if you changed the FlexForm above, remember to change
the plugin configuration on the referencing page as well. The page
configuration overrides the plugin configuration and will still have the
old (now invalid) value stored.
