You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PHP Fatal error: Class 't3lib_extMgm' not found in D:\htdocs\provida.marty.local\public_html\typo3conf\ext\jfmulticontent\ext_tables.php on line 186
#1
Open
marcelmarty opened this issue
Apr 13, 2016
· 1 comment
The text was updated successfully, but these errors were encountered:
marcelmarty
changed the title
HP Fatal error: Class 't3lib_extMgm' not found in D:\htdocs\provida.marty.local\public_html\typo3conf\ext\jfmulticontent\ext_tables.php on line 186
PHP Fatal error: Class 't3lib_extMgm' not found in D:\htdocs\provida.marty.local\public_html\typo3conf\ext\jfmulticontent\ext_tables.php on line 186
Apr 13, 2016
Change line 186 in ext_tables.php, because loading error in TYPO3 7.6
OLD:
$TBE_MODULES_EXT['xMOD_db_new_content_el']['addElClasses']['tx_jfmulticontent_pi1_wizicon'] = t3lib_extMgm::extPath($_EXTKEY) . 'pi1/class.tx_jfmulticontent_pi1_wizicon.php';
NEW:
$TBE_MODULES_EXT['xMOD_db_new_content_el']['addElClasses']['tx_jfmulticontent_pi1_wizicon'] = \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath($_EXTKEY) . 'pi1/class.tx_jfmulticontent_pi1_wizicon.php';
The text was updated successfully, but these errors were encountered: