[TYPO3-ect] TYPO3 Fatal Error: Extension key "div" was NOT loaded! (t3lib_extMgm::extPath)

Franz Holzinger franz at fholzinger.com
Wed Aug 22 12:01:08 CEST 2007


Hello,

unfortunately sometimes a blocker occurs with the TYPO3 EM.

After the
require_once(t3lib_extMgm::extPath('div') . 'class.tx_div.php');
in
http://typo3xdev.svn.sourceforge.net/viewvc/typo3xdev/tx_lib/trunk/ext_localconf.php?revision=6256&view=markup
the whole site is fully blocked!

You can overcome this by this small fix:

if (t3lib_extMgm::isLoaded('div')) {
	require_once(t3lib_extMgm::extPath('div') . 'class.tx_div.php');
        $bContinue = true;
}

if ($bContinue) {
....


see also
http://bugs.typo3.org/view.php?id=6081


- Franz





More information about the TYPO3-team-extension-coordination mailing list