Bug #16384
closedundefined class in tsfebeuserauth
0%
Description
I often get the following error. It seems to appear randomly. There are no exts installed that use this thing. To get rid of it, it sometimes help to open /typo3. Remove cache, restarting server etc does not help.
Fatal error: Class t3lib_tsfebeuserauth: Cannot inherit from undefined class t3lib_beuserauth in /home/ess-erfurt/www/htdocs/t3lib/class.t3lib_tsfebeuserauth.php on line 103
TYPO3 4.0
PHP Version 4.3.10
Mysql Client API version 4.1.16
(issue imported from #M3895)
Updated by Andreas Balzer over 18 years ago
By the way: The whole FE is not reachable anylonger, if this error appears.
Updated by Andreas Balzer over 18 years ago
solved this problem by adding require_once("class.t3lib_userauthgroup.php"); to class.t3lib_beuserauth.php and now it works again.
Is it possible, that the file is somehow not loaded in some situations?
Updated by Franz Holzinger about 18 years ago
Just write
require_once (PATH_t3lib.'class.t3lib_beuserauth.php');
just beneath the head of the file t3lib/class.t3lib_tsfebeuserauth.php.
This is in fact missing here. But this could have been intended for security reasons?
Updated by Martin Holtz about 18 years ago
i had that bug too, but i have to add
require_once (PATH_t3lib.'class.t3lib_beuserauth.php');
to class.t3lib_tsfebeuserauth.php
AND
require_once (PATH_t3lib.'class.t3lib_userauthgroup.php');
to class.t3lib_beuserauth.php
i got this error too:
http://bugs.typo3.org/view.php?id=4101 [^]
http://bugs.typo3.org/view.php?id=4160 [^]
Updated by Andreas Balzer almost 17 years ago
problem does no longer occur with T3 4.1.5.
Please close
Updated by Oliver Hader almost 17 years ago
Closing issue as requested by initial reporter.