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

2017-08-14 Thread Alex Kellner

For those who fight with the same problem in femanager, I created a FAQ-entry 
in the documentation:
https://docs.typo3.org/typo3cms/extensions/femanager/FAQ/Index.html#q-class-in2codefemanagerdomainmodellog-not-found-what-can-i-do
--
TYPO3 separates the men from the boys :D
TYPO3-Training from in2code.de
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


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

2017-08-10 Thread Svyatoslav Zubarev

Thanks, after removing caches it worked. Topic can be closed
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


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

2017-08-09 Thread Alex Kellner

Of course you have to clear the cache after removing an extension
--
TYPO3 separates the men from the boys :D
TYPO3-Training from in2code.de
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


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

2017-08-09 Thread Svyatoslav Zubarev
After removing femanager in the file typo3conf/PackageStates.php I got an error "[module-web_FemanagerM1] The option "source" is required and must not be empty" 
___

TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


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

2017-08-09 Thread Alex Kellner

Of course, you can remove extensions by removing the entry from 
typo3conf/PackageStates.php
--
TYPO3 separates the men from the boys :D
TYPO3-Training from in2code.de
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


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

2017-08-09 Thread Svyatoslav Zubarev
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 =(

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


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

2017-08-09 Thread Svyatoslav Zubarev

Yes, I used a classic way. Yes, I cleared the cache in typo3temp. Can you tell 
how can I remove femanager manually?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


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

2017-08-09 Thread Alex Kellner

You installed femanager the classic way? Means without composer?
Did you cleaned all caches (in install tool)? Did you clear typo3temp/*?
--
TYPO3 separates the men from the boys :D
TYPO3-Training from in2code.de
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english