[BUG] Add Vendor to prefix to configurePlugin

Issue #20 resolved
Thomas Hempel created an issue

Ahoi,

when installing Shariff on a TYPO3 V10.4 - the extension will not work in FE because the controller class can not be found.

This will result in an exception

(1/2) #1278450972 TYPO3\CMS\Extbase\Reflection\Exception\UnknownClassException

Class RxShariff\Controller\ShariffController does not exist. Reflection failed.

To solve this issue, the Vendor Prefix has to be added to the configurePlugin call:

ext_localconf.php

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
    'Reelworx.RxShariff',
    'Shariff',
    ['Shariff' => 'index'],
    []
);

Thanks and best wishes

Comments (3)

  1. Log in to comment