[TYPO3-english] Re: Class 'In2code\Femanager\Domain\Model\Log' not found

Svyatoslav Zubarev reverse0 at bk.ru
Wed Aug 9 15:12:28 CEST 2017


The problem occurs in the file ext_tables.php in function call_user_func(function (). If I will replace 
call_user_func(function () {
..................................................................

if (!\In2code\Femanager\Utility\ConfigurationUtility::isDisableModuleActive() &&
        !(TYPO3_REQUESTTYPE & TYPO3_REQUESTTYPE_INSTALL)) {
        \TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule(
            'In2code.femanager',
            'web',
            'm1',
            '',
            [
                'UserBackend' => 'list,userLogout'
            ],
            [
                'access' => 'user,group',
                'icon' => 'EXT:femanager/ext_icon.svg',
                'labels' => 'LLL:EXT:femanager/Resources/Private/Language/locallang_mod.xlf',
            ]
        );
    }
...............................................................

to 

call_user_func(function () {
.................................
if (!(TYPO3_REQUESTTYPE & TYPO3_REQUESTTYPE_INSTALL)) {
        \TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule(
            'In2code.femanager',
            'web',
            'm1',
            '',
            [
                'UserBackend' => 'list,userLogout'
            ],
            [
                'access' => 'user,group',
                'icon' => 'EXT:femanager/ext_icon.svg',
                'labels' => 'LLL:EXT:femanager/Resources/Private/Language/locallang_mod.xlf',
            ]
        );
    }
.............................
then the error disappears, but there is a new when I try to log in the extension  

"Could not analyse class: "In2code\Femanager\Persistence\Generic\Mapper\DataMap" maybe not loaded or no autoloader? Class In2code\Femanager\Persistence\Generic\Mapper\DataMap does not exist"

I would like to remove this extension, it makes me sad =(



More information about the TYPO3-english mailing list